Donovan Buck

Results 130 comments of Donovan Buck
trafficstars

@Manish2208 Here's a JavaScript example: https://github.com/firmata/firmata.js/blob/master/packages/firmata.js/examples/stepper-multi.js

I would like to see multiServo that allows me to pass a position for each member in a group of servos in a single message (see multiStepper).

Also worth noting that not all servos are 180 degrees so you'd have to be able to pass in the physical range of the servo as part of a configuration...

Found a related issue: https://github.com/firmata/arduino/issues/159

The only thing I've seen in addition to changing the state of the pin is a brief pause (400us) when switching from transmit to receive. The Serial Config command would...

I was thinking I can just track it in an array, the same way that serialBytesToRead is tracked by port.

Structs like this? ``` struct port { int serialBytesToRead, unsigned long lastReceive, unsigned char maxCharDelay, int lastAvailableBytes, byte rxPin, byte txPin, byte dirPin }; ```

Thanks for the heads up. I'll see if I can figure out whats up.

@TimonVS Something has changed about how GH handles apex domains. For now, you can see the website at https://www.j5e.dev/ Re: DeviceScript, It was frustrating to see that they are not...

Setting pin mode is something you would handle with the IO, so it's not a Johnny-Five thing really, but you can access the IO through the Johnny-Five Board instance: ```js...