Compass Yap
/
Test_mbed_blinky
hello test
main.cpp
- Committer:
- Compass_Yap
- Date:
- 2017-09-21
- Revision:
- 0:4651d2bc2edf
- Child:
- 1:956ce737cb2b
File content as of revision 0:4651d2bc2edf:
#include "mbed.h" DigitalOut myled(LED1); int main() { while(1) { myled = 1; wait(0.2); myled = 0; wait(0.2); } }