..

Dependencies:   mbed

main.cpp

Committer:
anmolhardik
Date:
2017-02-09
Revision:
0:75380c9086e4

File content as of revision 0:75380c9086e4:

#include "mbed.h"

BusOut myled(PTB18,PTB19,PTD1);

int main() {
    while(1) {
        myled = 0x6;
        wait(1.0);
        myled = 0x5;
        wait(1.0);
        myled = 0x3;
        wait(1.0);
    }
}