Long Jiang
/
peter_mbed_blinky
main.cpp
- Committer:
- PeterJiang
- Date:
- 2019-07-16
- Revision:
- 25:8af8b4228d91
- Parent:
- 24:7f14b70fc9ef
File content as of revision 25:8af8b4228d91:
#include "mbed.h" DigitalOut myled(LED1); int main() { while(1) { myled = 1; wait(0.2); myled = 0; wait(0.2); } }