Charles Lee
/
Project1-KnightRider
My 1st Basic program - Knight Rider running LEDs. Please comments.Thanks
Revision 0:0a1f0ff882c9, committed 2011-03-13
- Comitter:
- charles77
- Date:
- Sun Mar 13 07:58:18 2011 +0000
- Commit message:
Changed in this revision
main.cpp | Show annotated file Show diff for this revision Revisions of this file |
mbed.bld | Show annotated file Show diff for this revision Revisions of this file |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Sun Mar 13 07:58:18 2011 +0000 @@ -0,0 +1,44 @@ +#include "mbed.h" + +DigitalOut myled1(LED1); +DigitalOut myled2(LED2); +DigitalOut myled3(LED3); +DigitalOut myled4(LED4); + +int main() { + while(1) { + myled1 = 1; + wait(0.1); + myled2 = 1; + wait (0.1); + myled3 = 1; + wait (0.1); + myled4 = 1; + wait (0.1); + myled1 = 0; + wait (0.1); + myled2 = 0; + wait (0.1); + myled3 = 0; + wait (0.1); + myled4 = 0; + wait (0.1); + myled4 = 1; + wait (0.1); + myled3 = 1; + wait (0.1); + myled2 = 1; + wait (0.1); + myled1 = 1; + wait (0.1); + myled4 = 0; + wait (0.1); + myled3 = 0; + wait (0.1); + myled2 = 0; + wait (0.1); + myled1 = 0; + wait (0.1); + + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Sun Mar 13 07:58:18 2011 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/mbed_official/code/mbed/builds/63bcd7ba4912