Maxime Dupuis / Mbed 2 deprecated NerfUS_cmake_cleanup

Dependencies:   mbed-rtos mbed

Fork of NerfUS by NerfUS

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 #include "rtos.h"
00003 
00004 DigitalOut myled(LED1);
00005 
00006 int main()
00007 {
00008     while(1)
00009     {
00010         myled = 1;
00011         wait(0.5);
00012         myled = 0;
00013         wait(0.5);
00014     }
00015 }