fail

Dependencies:   mbed

Committer:
xouf2114
Date:
Tue Mar 14 15:07:28 2017 +0000
Revision:
0:8a976f4f0c98
print

Who changed what in which revision?

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