firmata/ConfigurableFirmata

ATH0

Closed this issue · 3 comments

I am currently using this modified Firmata since I have node.js running directly on my (disk expanded) Yun.

The problem is that it does not support OneWire (needed for a DS18B20 digital temperature sensor). So now I am looking into using ConfigurableFirmata instead. But I would need to get ConfigurableFirmata to work over ttyATH0 as the above Firmata does. Is this possible?

It may be too large to compile. If that's the case, uninclude any unused features (such as Encoder, etc).

Thanks! I actually worked it out shortly after posting (and didn't get time to reply sorry). For anyone coming to this issue the key part to getting a Firmata to work over ttyATH0 is changing:

Firmata.begin(57600);

to:

Serial1.begin(57600); 
Firmata.begin(Serial1); 

(as in soundanalogous's Firmata above)