modified project by other user

Dependencies:   mbed

Fork of __collab_test by InetrfaceProducts NXP

Committer:
okano
Date:
Sat Jun 09 00:17:13 2012 +0000
Revision:
4:0e5ac8240bb0
Parent:
3:5d42ca9632ba
Child:
6:e7484c826f75
test 1

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 4:0e5ac8240bb0 8 wait(1);
nxp_ip 0:0e25a3e84b78 9 myled = 0;
nxp_ip 3:5d42ca9632ba 10 wait(0.7);
nxp_ip 0:0e25a3e84b78 11 }
nxp_ip 0:0e25a3e84b78 12 }