Eslam Zidane
/
HelloWorld
fsgdds
Fork of HelloWorld by
main.cpp
- Committer:
- simon
- Date:
- 2012-01-01
- Revision:
- 1:03c191369089
- Parent:
- 0:fb6bbc10ffa0
File content as of revision 1:03c191369089:
#include "mbed.h" DigitalOut myled(LED1); int main() { while(1) { myled = 1; wait(0.2); myled = 0; wait(0.2); } }