Fix LED blink example so it works

Two fixes to the LED blink example:

 * The ID and delay time have been swapped (should be ID followed by delay time).
 * By default the alarm only fires once, there needs to be an extra `1` as a parameter before the function definition.
This commit is contained in:
follower 2014-12-10 00:07:06 +13:00
parent 8543956152
commit d76b5e9358
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ braudrate:9600
####And blink it ####And blink it
```lua ```lua
lighton=0 lighton=0
tmr.alarm(1000,1,function() tmr.alarm(1,1000,1,function()
if lighton==0 then if lighton==0 then
lighton=1 lighton=1
led(512,512,512) led(512,512,512)