firmata4j icon indicating copy to clipboard operation
firmata4j copied to clipboard

Firmata client written in Java.

Results 15 firmata4j issues
Sort by recently updated
recently updated
newest added

i keep getting error this stack trace to be exact ` java.io.IOException: Cannot start firmata device java.io.IOException: Cannot start firmata devi Caused by: jssc.SerialPortException: Port name - /dev/tty.usbmodem14501; Method name...

Thanks for your contribution of so great project. I want to implement a function below. The computer communicate to a arduino board with firmate4j. And the arduino board need to...

enhancement
help wanted

When using PULLUP mode for pins, they don’t always report the right value. This occurs with a genuine Uno, a clone Uno, and a clone Mega. It occurs on Windows,...

bug

More information about the exception can be found here: https://sentry.io/share/issue/1514e52d4bdf4edc92daf4947bfd84b6/ Already fixed in PR #49 but getting totally ignored.

More information about the exception can be found there: https://sentry.io/share/issue/1514e52d4bdf4edc92daf4947bfd84b6/

I've installed StandardFirmata on my Uno R3. I also followed the temporal hack in #48 to avoid crash. Now I try to connect to the device: ```kotlin val device: IODevice...

This method is called `setDigitalPinValue` but it actually builds a `DIGITAL_MESSAGE` message: https://github.com/kurbatov/firmata4j/blob/master/src/main/java/org/firmata4j/firmata/FirmataMessageFactory.java#L226 If you are using `StandardFirmata.ino` this can result in the wrong pin being changed since `SET_DIGITAL_PIN_VALUE` changes...

2.5.x

It is easy to reproduce: calling `org.firmata4j.IODevice.start()` always crashes the JVM: ``` # # A fatal error has been detected by the Java Runtime Environment: # # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at...

What do you think about using a serial communication library that has better support? As I see the library used had no releases for ages... I would recommend https://github.com/Fazecast/jSerialComm .

Thanks for your contribution of so great project. Most functions of the project is enough to control the Arduino device, and it work well. Now, I need use the temperature...

enhancement