Sha256: 67f03bdd6e9ab9d71582c4ac9a4c16dc8bd925959945d6dfd0cb0b1024937554

Contents?: true

Size: 953 Bytes

Versions: 5

Compression:

Stored size: 953 Bytes

Contents

require 'artoo'

# For LED brightness:
# Circuit and schematic here: http://arduino.cc/en/Tutorial/Fade
#
# For Analog Input:
# Substitute the button with an analog sensor like a photoresistor and 
# change to the correct analog input, in this case pin A0.
# Circuit and schematic here: http://arduino.cc/en/tutorial/button

#connection :firmata, :adaptor => :firmata, :port => '/dev/tty*'
connection :firmata, :adaptor => :firmata, :port => '127.0.0.1:8023'
device :sensor, driver: :analog_sensor, pin: 0, interval: 0
device :led, :driver => :led, :pin => 3

ai_pin = 0

work do
  puts "Reading sensor in analog pin #{ sensor.pin }"
  puts "Reading analog sensor intervals every => #{ sensor.interval }"

  every(0.25) do
    analog_read = sensor.analog_read(ai_pin)
    brightness_val = analog_read.to_pwm_reverse
    puts "Analog Read => #{ analog_read }"
    puts "brightness val => #{ brightness_val }"
    led.brightness(brightness_val)
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
artoo-arduino-1.4.2 examples/led_brightness_with_analog_input.rb
artoo-arduino-1.4.1 examples/led_brightness_with_analog_input.rb
artoo-arduino-1.4.0 examples/led_brightness_with_analog_input.rb
artoo-arduino-1.3.0 examples/led_brightness_with_analog_input.rb
artoo-arduino-1.2.0 examples/led_brightness_with_analog_input.rb