Created
June 16, 2013 06:13
-
-
Save igmarin/5790975 to your computer and use it in GitHub Desktop.
Test Sphero 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment