Skip to content

Continuous reading from analog pin gets the same value #41

Open
@ikamen

Description

@ikamen

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)
   sleep 5
end
arduino.close

but I get the same value regardless how the conditions for the sensor change.
If I put the arduino initialisation and close within the loop it works, but this is far from optimal way of doing it. I'd like to be able to initialise the object and work with it for a while before closing.

I'm running it with Firmata 2.4.0 on a raspberry pi.

Any ideas?

Thanks,
Kamen

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions