Wii4R

Ruby C Extension for controlling Wii Remote devices via bluetooth connection. Binding of C wiiuse library (www.wiiuse.net)

Install

$ make
$ make install
$ make clean

That should be all.

Dependencies

  • wiiuse lib (www.wiiuse.net) (lacks of speaker support and small fixes)

  • wiiuse_fork (github) (lacks of speaker support as for now)

Usage

 require 'wii4r'
 include Wii

 w = WiimoteManager.new
 w.connect
 w.poll do |(wiimote, event)|
  if event == :generic
    if wiimote.pressed? BUTTON_A
      puts "button a pressed!"
    end
  end
 end

See rdoc documentation at doc/ for more details

Copyright © 2009 KzMz & BuZz.

LICENSE for details