Fixing the example

This commit is contained in:
deadprogram 2013-10-19 17:57:51 -07:00
parent 4fd5c4e74f
commit 7cbf27e636
1 changed files with 2 additions and 2 deletions

View File

@ -39,8 +39,8 @@ robot = cylon.robot
work: ->
# we do our thing here
every 1.second(), ->
led.toggle()
every 1.second, ->
led.toggle
# start working
robot.work