modified project by other user

Dependencies:   mbed

Fork of __collab_test by Tedd OKANO

Committer:
okano
Date:
Sat Jun 09 00:08:39 2012 +0000
Revision:
1:90119b064e7a
Parent:
0:0e25a3e84b78
Child:
5:2ccbf6d5d336
ct 0

Who changed what in which revision?

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