..

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 BusOut myled(PTB18,PTB19,PTD1);
00004 
00005 int main() {
00006     while(1) {
00007         myled = 0x6;
00008         wait(1.0);
00009         myled = 0x5;
00010         wait(1.0);
00011         myled = 0x3;
00012         wait(1.0);
00013     }
00014 }