Search found 4 matches

by blaketasim
Mon Nov 27, 2023 5:43 pm
Forum: MegunoLink
Topic: Table within Tab control - send selected and send all not activated to press
Replies: 1
Views: 1395

Re: Table within Tab control - send selected and send all not activated to press

Hey Strud,

I actually had the same thing happen to me. I think i ended up giving up and moving the table as a specific view (property table) and not in the interface window. now i just have a tab of my properties table next to my interface window.

Blake
by blaketasim
Mon Nov 27, 2023 5:40 pm
Forum: General Discussion
Topic: Breaking up code in multiple files
Replies: 3
Views: 1516

Re: Breaking up code in multiple files

Hi Strud,

I'm using VS code as well but on PC.

Everything compiles fine, but when i upload the code, my teensy board just freeze.

I'm still using multiple files, i'm just leaving all of the megunolink files in the main ino and that seems to be okay. My main is just getting very clunky.

Blake
by blaketasim
Thu Nov 23, 2023 7:52 pm
Forum: MegunoLink
Topic: Is it possible for a time series to have the time in the data?
Replies: 2
Views: 1647

Re: Is it possible for a time series to have the time in the data?

I have recently run into the same problem. I tried to do a time series with a time input but that turned out to be a much bigger headache than it was worth. The issue is you need to return time relative to seconds since unix epoch so the number gets huge. (you have to sync your time with the compute...
by blaketasim
Thu Nov 23, 2023 5:22 am
Forum: General Discussion
Topic: Breaking up code in multiple files
Replies: 3
Views: 1516

Breaking up code in multiple files

I've been trying to program a teensy 4.1. When i smash everything into the main .ino file, i have no problems. When i try to use pointers or move any reference outside of the main file i run into serious problems. First is passing a function into the command handler. It seems like the only way to do...