Selvakumar Samuel
/
IoTEx1
Practice 1
main.cpp
- Committer:
- selvakumararm
- Date:
- 2021-05-31
- Revision:
- 1:04560438fe1c
- Parent:
- 0:07deac855ed7
File content as of revision 1:04560438fe1c:
#include "mbed.h" DigitalOut myled(LED1); int main(){ while(1){ myled = 1; wait(1); myled = 0; wait(1); } }