Nigel Westbury / Mbed 2 deprecated mbed-os-example-blinky-2-0

Dependencies:   mbed

Committer:
NigelW
Date:
Tue Oct 19 16:19:23 2021 +0000
Revision:
3:aaabe92e4143
Parent:
2:b1a301e3f1a6
fix it

Who changed what in which revision?

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