Donovan Buck

Results 130 comments of Donovan Buck
trafficstars

It was all I tried. Narrowed it down a bit... 50 did not work, 60 did

Do you have an idea of what the API signature will look like? I think @rwaldron had expressed a preference for a second call to serialConfig like `serialConfig({baud:9600})`. The Tessel...

> Would have probably scaled better to non-Arduino platforms. It's exactly the right thing for imp-io and tessel-io so I'm not sure what you mean. When would you not want...

The Tessel 2 has serialBaud(9600) to change an already configured port's baud rate but to be honest I'm not sure what happens behind the scenes. It may close and reopen....

Rodger dodger, I will get that done today/tonight.

Didn't forget about you. Just haven't been able to get it to work. Still plugging away, trying to confirm it's not something I'm doing wrong.

It certainly looks like it should work. Could you share your code? It might make it easier to diagnose.

I'm able to replicate in node 12, but works fine in node 10. I can't imagine what has changed but I'll dig into it.

**Tired:** Off by 1 errors **Wired:** Off by 0.00000000000000000001 errors Here's the scoop: In node 10: ````js Math.pow(10, -4) === 0.0001 ```` but in node 12 ````js Math.pow(10, -4) ===...

I thought about that, but the 8-pins per port is unique to firmata and I need to create something that will work for all the different IO plugins. writeDigitalPort doesn't...