arduino_firmata icon indicating copy to clipboard operation
arduino_firmata copied to clipboard

Arduino Firmata protocol implementation on Ruby

Results 13 arduino_firmata issues
Sort by recently updated
recently updated
newest added

I unfortunately haven't been able to run tests to see if they still pass. See https://github.com/shokai/arduino_firmata/issues/46 for details.

I have loaded SysexLedBlinkFirmata onto my Arduino and set `ARDUINO` variable on my env correctly. `bundle install` succeeded although I had to bump version of `serialport` (see https://github.com/shokai/arduino_firmata/pull/44). ``` arduino_firmata$...

This fixes issue when using `ruby-2.2.2`.

Hi, I'm trying to get the value of a sensor on regular intervals. I try running this simple code ``` require "arduino_firmata" arduino = ArduinoFirmata.connect "/dev/ttyACM0" 5.times do puts arduino.analog_read(1)...

Hi, I need some help. I want to read sensor values from a I2C sensor. I think I need the sysex commands. I tried this: arduino.pinMode(3, firmata.PIN_MODE_I2C); arduino.pinMode(2, firmata.PIN_MODE_I2C); console.log("I2C...

enhancement
windows

i use arduino & node-red and error message was broke out. # Welcome to Node-RED 5 Sep 13:51:45 - [red] Version: 0.8.1 5 Sep 13:51:45 - [red] Loading palette nodes...

When attempting to connect, if the `nonblock_io` option is not passed, it does not connect, and ends up hanging instead. The code by default sets [`@read_byte_size = 9600`](https://github.com/shokai/arduino_firmata/blob/bf83d3331a0f5a7db858cd06cefc6127f023d9b3/lib/arduino_firmata/arduino.rb#L12), then in...

Whenever my process which is using ArduinoFirmata tries to exit gracefully, it never exits because ArduinoFirmata is stuck. When I do a CTRL+C, the last few lines of the trace...

I have an Arduino Mega 2560 and whenever using this library, I have to wait 10 seconds after connecting before sending any commands. I've been testing with a simple LED...