Fabio Cardoso
/
HelloWorld
Led blink 0.5 delay
Fork of HelloWorld by
Revision 2:fa10286f23ad, committed 2014-10-21
- Comitter:
- FabioCardoso
- Date:
- Tue Oct 21 21:09:49 2014 +0000
- Parent:
- 1:03c191369089
- Commit message:
- led blink delay 0.5
Changed in this revision
main.cpp | Show annotated file Show diff for this revision Revisions of this file |
diff -r 03c191369089 -r fa10286f23ad main.cpp --- a/main.cpp Sun Jan 01 20:57:57 2012 +0000 +++ b/main.cpp Tue Oct 21 21:09:49 2014 +0000 @@ -5,8 +5,8 @@ int main() { while(1) { myled = 1; - wait(0.2); + wait(0.5); myled = 0; - wait(0.2); + wait(0.5); } }