Merge pull request #24 from follower/patch-1

Fix LED blink example so it works
This commit is contained in:
zeroday 2014-12-09 19:33:06 +08:00
commit 2f980c3603
1 changed files with 1 additions and 1 deletions

View File

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