Jeff Hoefs

Results 461 comments of Jeff Hoefs

The Firmata protocol for OneWire is described here: https://github.com/firmata/protocol/blob/master/onewire.md

Hi, I do not have any immediate plans to add OneWire support to Breakout.

It may actually only require initializing all pins to digital on startup if the host doesn't issue a capability query on startup: ``` javascript // call from checkForQueryResponse if _capabilityQueryResponseReceived...

I have not experienced this on Yosemite. I'll look into it further. I've been avoiding creating a signed version because I think it's completely ridiculous that Apple wants me to...

I was able to reproduce the issue. It only occurs if you have the Firewall enabled. I assume some users choose to enable the Firewall so it would be useful...

1. Use the nodeJS version of breakout server: https://github.com/soundanalogous/Breakout/tree/master/node_server It doesn't currently have an "auto connect" mode, but you could write a shell script to launch the application with a...

Sounds good. Also, both versions of Breakout Server should also be work as a general purpose serial to websocket bridge. They just don't currently fully meet your requirements. I can...

There are two ways to do this: 1. Using the firmata Sysex with a custom binary protocol. 2. Using firmata Strings with JSON data

I think this should be handled by the Firmata client (firmata.js in your case) rather than the firmware. The client developer should be familiar with the protocol and defined limitations.

Another more ambitious way to handle this would be to have the max number of steppers determined by available ram on the target microcontroller, then it would make sense for...