-
Hello,
any news about update to Firmata v 2.3 http://firmata.org/wiki/Protocol?
Thanks:)
Arthur.
-
The `serial` device is currently unsupported and undocumented.
Opening the serial device opens a webserial connection in Chrome (or Edge).
This allows a program running com0com version 2.2 on Wind…
-
The "move complete command" in AccelStepper lists value 0x0b in
protocol/accelStepperFirmata.md . However, the implementations use 0x0a:
https://github.com/firmata/firmata.js/blob/488964da379b13…
-
Szenario to be addressed:
Arduino is connected by other means than serial and connection drops and reconnects. There's no way to know whether firmata did reset while being disconnected. To ensure sync…
-
Because Firmata and ConfigurableFirmata diverged a few years ago, they have different version numbers. However as far as the protocol is concerned they should be equal (in that both versions of Firmat…
-
Hello everyone! I'm trying to get a better understanding for how the Firmata implementation is expected to be used. I've been working with the protocol for a little over 4 years and I'm currently the …
-
Thanks for your incredible work developing the firmata protocol!
I have forked the C++ firmata client implementation from dimitry-ishenko-cpp to adjust a few things: [https://github.com/NANDLAB/firma…
-
If I'm not completely wrong, that should work:
`public static void main(String[] args) throws InterruptedException, IOException {
Firmata firmata = new Firmata("COM8");
Thread.sleep(3000);
…
-
The current Firmata implementation (and protocol) only allows for a single I2C interface per board. For Firmata 3.0, update the protocol and implementation to allow for multiple I2C interfaces (SCA0 /…
-
### What happened?
We connect to an OPC UA server via a WAN connection where the hostname of the server is not present in our DNS, so we connect to it via IP address. We had no problems connecting…