arduino
arduino copied to clipboard
Firmata firmware for Arduino
It is difficult, if not impossible, to pick up the version number coming across the wire.
Need to allow wifi configuration on startup of the device. For example, see here: https://github.com/tzapu/WiFiManager Start as an access point with a fixed SSID, and provide the user a way...
Please see https://github.com/MrYsLab/pymata-aio/issues/91 for the details.
There are some libraries out there that conflicts with Serial. An example overall: Conceptinetics DMX library. check this up https://forum.arduino.cc/index.php?topic=523418.0 By the way I was able to make it work...
https://github.com/firmata/arduino/blob/master/examples/StandardFirmata/StandardFirmata.ino Starting on line 560: queryIndexToSkip = 0; // if read continuous mode is enabled for multiple devices, // determine which device to stop reading and remove it's data from...
There is a well-known problem with the Arduino UNO ADC (very likely affects other boards as well) that multiple analogRead() performed on different pins with no delay won't give enough...
Add a note [here](https://github.com/firmata/arduino/blob/master/examples/StandardFirmata/StandardFirmata.ino#L768-L772) about ignoring the RX1 & TX1 pins when Serial1 is used (etc for Serial2 and Serial3 as well).
Add SPI
I had started work on the interface a while back: https://github.com/firmata/protocol/pull/27. And a thread here: https://github.com/firmata/protocol/issues/26. The tricky part is there are a lot of edge cases to cover. A...
Hi! I want to use Firmata with the ESP8266. I tried StandardFirmataWiFi and it's ok (Thanks!!!) It has different options... but it connects to WiFi always in _Station mode_ (connecting...
Hi, if I use this code on StandardFirmataPlus, the firmata works on the begin but then it stop when I send Firmata.digitalwrite from my client program. Code into StandardFirmataPlus: void...