igmarin
6/16/2013 - 6:13 AM

Test Sphero 1

Test Sphero 1

require 'artoo'

connection :sphero, :adaptor => :sphero, :port => '127.0.0.1:4321'
device :sphero, :driver => :sphero


work do
  every(1.seconds) do
    sphero.set_color(:red)
    sphero.roll 90, rand(360)
    sphero.set_color(:blue)
    sphero.roll 90, rand(360)
  end
end