Maciej Zemlo / Mbed OS IES-R1-0_1_0
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 
00004 #define BLINKING_RATE_MS            500
00005 
00006 DigitalOut led2 ( PB_2 ) ;
00007  
00008 int main() {
00009     while ( true ) {
00010         led2 = !led2 ;
00011         thread_sleep_for(BLINKING_RATE_MS);
00012     }
00013 }