Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Revision 2:5009f3811b0a, committed 2018-01-19
- Comitter:
- aafanasj
- Date:
- Fri Jan 19 22:32:13 2018 -0500
- Parent:
- 1:fccb9a602d9a
- Commit message:
- New sequence implemented
Changed in this revision
main.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/main.cpp Fri Jan 19 19:12:01 2018 -0500 +++ b/main.cpp Fri Jan 19 22:32:13 2018 -0500 @@ -10,32 +10,22 @@ led1.write(1); led2.write(0); led3.write(0); - wait(0.5); + wait(0.2); led1.write(1); led2.write(1); led3.write(0); - wait(0.5); + wait(0.2); led1.write(1); led2.write(1); led3.write(1); - wait(0.5); - - led1.write(0); - led2.write(1); - led3.write(1); - wait(0.5); + wait(0.2); - led1.write(0); - led2.write(0); - led3.write(1); - wait(0.5); - - led1.write(0); - led2.write(0); - led3.write(0); - wait(0.5); + led1.write(0); + led2.write(0); + led3.write(0); + wait(0.2); } }