Masa Itou / Mbed 2 deprecated test1

Dependencies:   TextLCD mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main_copy.cpp Source File

main_copy.cpp

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