Mac Lobdell / Mbed 2 deprecated macs_mbed_blinky

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

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