LIRC client for Ruby
Go to file
hans 911e513d44 irw.rb
darcs-hash:20090326180419-28bda-da2ee7f295f802564f1e567bd46b23e99c764413.gz
2009-03-26 12:04:19 -06:00
examples irw.rb 2009-03-26 12:04: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