Method: Argus::Controller#led

Defined in:
lib/argus/controller.rb

#led(selection, hertz, duration) ⇒ Object



90
91
92
93
94
95
96
97
98
99
# File 'lib/argus/controller.rb', line 90

def led(selection, hertz, duration)
  selection = LedAnimation.lookup_value(selection)
  value = [
    selection,
    FloatEncoding.encode_float(hertz),
    duration
  ].join(',')
  @at_commander.config("leds:leds_anim",value)
  self
end