LIRC client for Ruby
Go to file
hans 4fef10dc14 license/readme
darcs-hash:20060625000619-28bda-9698914d37b034caa8cb7baaca7fd92b63721d08.gz
2006-06-24 18:06:19 -06:00
lib repeat is hex 2006-06-24 17:43:10 -06:00
test a couple test 2006-06-24 17:52:50 -06:00
LICENSE license/readme 2006-06-24 18:06:19 -06:00
README license/readme 2006-06-24 18:06:19 -06:00
Rakefile first pass 2006-06-24 17:33:43 -06:00
setup.rb setup.rb 2006-06-24 17:38:39 -06:00

README

lircr (pronounced 'lurker') is a LIRC client library for Ruby. It's simple,
it's easy, it's fun. If you got LIRC, get lircr. I am not responsible if you
grow more hair on your index finger or thumb.
    
    require 'lirc'
    lirc = LIRC::Client.new
    event = lirc.next
    p event
    if event.name == "play"
        system "xmms", "/av/music/3.mod"
    end