Dar Leg / Mbed OS SleepyBlinky
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 #include "platform/mbed_thread.h"
00003 @ last tested 12/4/2022
00004 #define SleepTime 200
00005 
00006 DigitalOut led1(LED1);
00007 
00008 int main() {
00009     while(1) {
00010         led1 = 1;
00011         thread_sleep_for(SleepTime);
00012         led1 = 0;
00013         thread_sleep_for(SleepTime);
00014     }
00015 }