arduino
arduino copied to clipboard
Firmata firmware for Arduino
This is an initial approach to Firmata SPI support. Consider this a prototype for now. The draft proposal that this implementation is based on is available here: https://github.com/firmata/protocol/blob/master/proposals/spi-proposal.md. SPI is...
In StandardFirmata.ino, systemResetCallback() sets the default mode to OUTPUT (and value LOW) for all pins on startup. This will short-circuit the pins which are connected to HIGH logic level by...
The error messages in StandardFirmata are all stored in SRAM. I'd like to move them out. There are a couple of options. 1 Move the error strings to program memory....
Moved from https://github.com/jgautier/firmata/issues/104 ### My Scenario Using an Arduino Uno and softwareSerial I'm trying to connect to a device that runs at 115200 baud by default. I know the Uno...
The Primo has an ESP8266 on-board which works with StandardFirmataWiFi on it's own, but it's connected to the nRF52832 via UART so I'm not sure how that could be translated...
Here is the motivation behind the pull-request, as fleshed out below... - Originally, the parser was built into FirmataClass which serves the host/server. - There was no notion of a...
Before I start trying to develop my own NRF24L radio module support for StandardFirmata I would like to ask whether such implementation already exists ? It is hard to believe...
Previously, we discussed that `FirmataMarshaller` and `FirmataParser` should only contain the core functionality and nothing more. Then in the future (think configurable Firmata) we would use the marshaller and parser...
examples: packUint8 / unpackUint8 packInt8 / unpackInt8 packUint16 / unpackUint16 packInt16 / unpackInt16 packUint32 / unpackUint32 packInt32 / unpackInt32 Not sure if we need a set for 64 bits. Also...
Esp8266 i2c
Hi, I'm using an esp8266 with standardfirmatwifi and j5. It works great when I blink an led, but an i2c sensor is non-responisve. I have tried with a bme280 and...