Fixes raspi button example typo.

This commit is contained in:
Edgar O Silva 2013-11-06 14:19:14 -06:00
parent ff978f3a0d
commit 0c3b319b12
1 changed files with 1 additions and 1 deletions

View File

@ -12,6 +12,6 @@ Cylon.robot
] ]
work: (my) -> work: (my) ->
my.button.on 'push', my.led.toggle() my.button.on 'push', () -> my.led.toggle()
.start() .start()