modified project by other user

Dependencies:   mbed

Fork of __collab_test by Tedd OKANO

Committer:
nxp_ip
Date:
Sat Jun 09 00:48:19 2012 +0000
Revision:
8:3c9ab61912f1
Parent:
6:e7484c826f75
Child:
9:dd2089ab7029
ct 05

Who changed what in which revision?

UserRevisionLine numberNew contents of line
okano 5:2ccbf6d5d336 1 #include "mbed.h"
okano 5:2ccbf6d5d336 2
okano 5:2ccbf6d5d336 3 DigitalOut myled(LED1);
okano 5:2ccbf6d5d336 4
nxp_ip 8:3c9ab61912f1 5 // test test
nxp_ip 8:3c9ab61912f1 6
okano 5:2ccbf6d5d336 7 int main() {
okano 5:2ccbf6d5d336 8 while(1) {
okano 5:2ccbf6d5d336 9 myled = 1;
okano 5:2ccbf6d5d336 10 wait(1.0);
okano 5:2ccbf6d5d336 11 myled = 0;
okano 5:2ccbf6d5d336 12 wait(1.0);
okano 5:2ccbf6d5d336 13 }
okano 5:2ccbf6d5d336 14 }