David Buezas
David Buezas
Channel A0 is blue and you connected it to channel A0, right? Did you also connect the grounds of the board and your device under test? What time scale and...
> Could there be an issue with using a separate FTDI instead of an all-in-one MPU module? it shouldn't. But if the RTS and DTS lines are not connected, you...
There is an issue in the arduino core repo for this board which may be relevant for you: https://github.com/dbuezas/lgt8fx/issues/4 TL;DR "I tried another FTDI breakout board and it works with...
> I have the same issue. Sometimes it works and sometimes it doesn't. That's interesting... I developed in the same board and I had no issues. If anybody else has...
Got it. I suspect something is waiting for the end event in the transition to happen. Calling element.__transition[group].timer.call(duration) on all elements does make the next transition start right away (but...
# Demo Ok, here is the minimalistic demo: https://bl.ocks.org/dbuezas/cc9e5ec4df29b9f436ce2755b6a54fbf
# Hack-fix For what is worth, I played a bit with the internals and found a way to "fix-hack-it". I hope it helps finding out what the problem is: ##...
`client.get` will wait ~~using the global Delay~~ **until the response is received and call the global yield**, this blocks the tasks. The only ways around this I can think of...
### I found a way to make this work: 1. expose the yield function of the current Task (e.g SchedulerClass::yield()) 2. Make a new class that inherits from HTTPSClient ```cpp...
I think it can be done ~(I first have to understand the run groups thing), I'll make a separate PR after #20~ gave up on making it work with run...