Skip to content

Instantly share code, notes, and snippets.

@igmarin
Created June 16, 2013 06:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save igmarin/5790975 to your computer and use it in GitHub Desktop.
Save igmarin/5790975 to your computer and use it in GitHub Desktop.
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment