Vincent Cheung
/
HelloWorld
h
Fork of HelloWorld by
main.cpp
- Committer:
- Judorunner
- Date:
- 2016-10-24
- Revision:
- 2:e2ae43e8acab
- Parent:
- 0:fb6bbc10ffa0
- Child:
- 3:641eefd1110b
File content as of revision 2:e2ae43e8acab:
#include "mbed.h" #include "PaceHeart.h" DigitalOut myled(LED1); int main() { while(1) { myled = 1; wait(0.2); myled = 0; wait(0.2); } }