Fork of DigitalOut_HelloWorld

Fork of DigitalOut_HelloWorld by mbed_example

Testing Testing Testing Testing Testing Testing Testing Testing Testing Testing Testing Testing

Committer:
mbed_official
Date:
Wed Feb 13 16:12:59 2013 +0000
Revision:
0:b5a9e0614efd
Child:
2:b4e2eee99a28
DigitalOut Hello World

Who changed what in which revision?

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