..

Dependencies:   mbed

Committer:
anmolhardik
Date:
Thu Feb 09 10:45:27 2017 +0000
Revision:
0:75380c9086e4
aa

Who changed what in which revision?

UserRevisionLine numberNew contents of line
anmolhardik 0:75380c9086e4 1 #include "mbed.h"
anmolhardik 0:75380c9086e4 2
anmolhardik 0:75380c9086e4 3 BusOut myled(PTB18,PTB19,PTD1);
anmolhardik 0:75380c9086e4 4
anmolhardik 0:75380c9086e4 5 int main() {
anmolhardik 0:75380c9086e4 6 while(1) {
anmolhardik 0:75380c9086e4 7 myled = 0x6;
anmolhardik 0:75380c9086e4 8 wait(1.0);
anmolhardik 0:75380c9086e4 9 myled = 0x5;
anmolhardik 0:75380c9086e4 10 wait(1.0);
anmolhardik 0:75380c9086e4 11 myled = 0x3;
anmolhardik 0:75380c9086e4 12 wait(1.0);
anmolhardik 0:75380c9086e4 13 }
anmolhardik 0:75380c9086e4 14 }