new tam program

Dependencies:   mbed C12832_lcd LCD_fonts Servo

Committer:
cathal66
Date:
Thu Jan 22 20:27:34 2015 +0000
Revision:
0:f3994b911c71
Child:
1:b8b924f9aa15
New team program

Who changed what in which revision?

UserRevisionLine numberNew contents of line
cathal66 0:f3994b911c71 1 #include "mbed.h"
cathal66 0:f3994b911c71 2
cathal66 0:f3994b911c71 3 DigitalOut myled(LED1);
cathal66 0:f3994b911c71 4
cathal66 0:f3994b911c71 5 int main() {
cathal66 0:f3994b911c71 6 while(1) {
cathal66 0:f3994b911c71 7 myled = 1;
cathal66 0:f3994b911c71 8 wait(0.2);
cathal66 0:f3994b911c71 9 myled = 0;
cathal66 0:f3994b911c71 10 wait(0.2);
cathal66 0:f3994b911c71 11 }
cathal66 0:f3994b911c71 12 }