modified project by other user

Dependencies:   mbed

Fork of __collab_test by InetrfaceProducts NXP

Committer:
nxp_ip
Date:
Sat Jun 09 00:05:21 2012 +0000
Revision:
0:0e25a3e84b78
Child:
1:90119b064e7a
Child:
2:08342de867c7
test project for collab

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;
nxp_ip 0:0e25a3e84b78 8 wait(0.2);
nxp_ip 0:0e25a3e84b78 9 myled = 0;
nxp_ip 0:0e25a3e84b78 10 wait(0.2);
nxp_ip 0:0e25a3e84b78 11 }
nxp_ip 0:0e25a3e84b78 12 }