Gerardo Carmona / Mbed 2 deprecated MSE_BusOut

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 
00004 BusOut leds(LED1, D9, LED2, LED3);
00005 
00006 int x = 1;
00007 
00008 int main()
00009 {
00010     leds  = 1;
00011     while (true) {
00012         leds  = x;
00013         x = x << 1;
00014         if (x == 16){
00015             x = 1;
00016         }
00017         printf("%d\n", x);
00018         wait(1);
00019     }
00020 }