simple blinky with mbed-dev source
Fork of Nucleo_blink_led_copy by
main.cpp
- Committer:
- rcflyair
- Date:
- 2017-02-24
- Revision:
- 0:f97055fd6e94
File content as of revision 0:f97055fd6e94:
#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 } }