gdgfg
main.cpp
- Committer:
- bcostm
- Date:
- 2018-04-19
- Revision:
- 7:7e9e8f0790c2
- Parent:
- 2:b60cb847489c
File content as of revision 7:7e9e8f0790c2:
#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
}
}