Mohamad Syahmi Noor Shah
/
HelloWorld
LED hello world
Fork of HelloWorld by
Revision 3:333d22bc52e9, committed 2017-09-27
- Comitter:
- SyahmiShah
- Date:
- Wed Sep 27 12:35:39 2017 +0000
- Parent:
- 2:0ba1a3a3363c
- Commit message:
- slowdown blink rate
Changed in this revision
main.cpp | Show annotated file Show diff for this revision Revisions of this file |
diff -r 0ba1a3a3363c -r 333d22bc52e9 main.cpp --- a/main.cpp Wed Sep 27 12:34:14 2017 +0000 +++ b/main.cpp Wed Sep 27 12:35:39 2017 +0000 @@ -7,9 +7,9 @@ while(1) { myled = 1; myled2 = 0; - wait(0.2); + wait(0.5); myled = 0; myled2 = 1; - wait(0.2); + wait(0.5); } }