aaron xu
/
Nucleo_blinky_l0_aaron
fork demonstration
Fork of Nucleo_blinky_l0 by
main.cpp
- Committer:
- aaronxu
- Date:
- 2014-10-29
- Revision:
- 2:d6d94585a40a
- Parent:
- 0:fb8d3cec05ec
File content as of revision 2:d6d94585a40a:
#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 } }