Skip to content

srpsco/delcom_904008_driver

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

Provides a simple interface to turn on/off the red, green and yellow LEDs.

It should be pretty trivial to adapt this driver to work with any generation II signal indicator, however I only have access to the RGY version.

require 'timeout'
require 'delcom_904008'

light = Delcom::SignalIndicator.new

begin
  Timeout::timeout(5) do
    loop do
      light.red
      sleep 0.1
      light.off
      sleep 0.05
    end
  end
rescue Timeout::Error
  light.off
end

light.close

About

Ruby driver for the Delcom USB HID Visual Signal Indicator RGY (904008, generation II)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors