modified project by other user

Dependencies:   mbed

Fork of __collab_test by Tedd OKANO

Committer:
okano
Date:
Sat Jun 09 07:19:14 2012 +0000
Revision:
11:743c0c03cb76
Parent:
10:fdf571493c66
just pulled from mr.ytsuboi and add this line and publishing again

Who changed what in which revision?

UserRevisionLine numberNew contents of line
okano 11:743c0c03cb76 1 // just pulled from mr.ytsuboi and add this line and publishing again / okano
okano 11:743c0c03cb76 2
okano 5:2ccbf6d5d336 3 #include "mbed.h"
okano 5:2ccbf6d5d336 4
okano 5:2ccbf6d5d336 5 DigitalOut myled(LED1);
okano 5:2ccbf6d5d336 6
okano 5:2ccbf6d5d336 7 int main() {
okano 5:2ccbf6d5d336 8 while(1) {
okano 5:2ccbf6d5d336 9 myled = 1;
ytsuboi 10:fdf571493c66 10 wait(0.5);
okano 5:2ccbf6d5d336 11 myled = 0;
ytsuboi 10:fdf571493c66 12 wait(0.5);
okano 5:2ccbf6d5d336 13 }
okano 5:2ccbf6d5d336 14 }