bosko lekovic
/
mbed_blinky_22
test_22
main.cpp
- Committer:
- bosko001
- Date:
- 2021-12-26
- Revision:
- 25:1287a26719d2
- Parent:
- 24:7f14b70fc9ef
File content as of revision 25:1287a26719d2:
#include "mbed.h" DigitalOut myled(LED1); int main() { while(1) { myled = 1; wait(0.5); myled = 0; wait(0.5); } }