]> git.gir.st - tmk_keyboard.git/blob - tool/mbed/mbed-sdk/libraries/tests/mbed/blinky/main.cpp
Squashed 'tmk_core/' changes from 7967731..b9e0ea0
[tmk_keyboard.git] / tool / mbed / mbed-sdk / libraries / tests / mbed / blinky / main.cpp
1 #include "mbed.h"
2
3 DigitalOut myled(LED1);
4
5 int main() {
6 while(1) {
7 myled = 1;
8 wait(0.2);
9 myled = 0;
10 wait(0.2);
11 }
12 }
Imprint / Impressum