Fawwaz Nadzmy
/
ESP-PN-V05
ESP
main.cpp
- Committer:
- fwndz
- Date:
- 2016-12-21
- Revision:
- 0:a6e5b95a327c
File content as of revision 0:a6e5b95a327c:
#include "mbed.h" DigitalOut myled(LED1); int main() { while(1) { myled = 1; // LED is ON wait(0.2); // 200 ms myled = 0; // LED is OFF wait(1.0); // 1 sec } }