ave

Dependencies:   QEI TextLCD mbed

Committer:
com3
Date:
Thu Oct 17 01:49:27 2013 +0000
Revision:
0:3fd90568b788
ave

Who changed what in which revision?

UserRevisionLine numberNew contents of line
com3 0:3fd90568b788 1 #include "mbed.h"
com3 0:3fd90568b788 2
com3 0:3fd90568b788 3 BusOut myleds(LED1, LED2, LED3, LED4);
com3 0:3fd90568b788 4
com3 0:3fd90568b788 5 void start_led()
com3 0:3fd90568b788 6 {
com3 0:3fd90568b788 7 myleds = 0x08;
com3 0:3fd90568b788 8 wait(1);
com3 0:3fd90568b788 9 myleds = 0x04;
com3 0:3fd90568b788 10 wait(1);
com3 0:3fd90568b788 11 myleds = 0x02;
com3 0:3fd90568b788 12 wait(1);
com3 0:3fd90568b788 13 myleds = 0x01;
com3 0:3fd90568b788 14 wait(1);
com3 0:3fd90568b788 15 myleds = 0;
com3 0:3fd90568b788 16 }