
The example program for mbed pin-compatible platforms
main.cpp
- Committer:
- MACRUM
- Date:
- 2018-09-11
- Revision:
- 21:5a2e8a75ddff
- Parent:
- 4:81cea7a352b0
- Child:
- 23:c76594f491f2
File content as of revision 21:5a2e8a75ddff:
#include "mbed.h" DigitalOut myled(LED1); int main() { while(1) { myled = 1; wait(0.2); myled = 0; wait(0.2); } }