mbed-os-example-blinky_EinkShield
Fork of mbed-os-example-mbed5-blinky by

Pinout

led blink example
#include "mbed.h"
DigitalOut einkshield_led1(D7);
// main() runs in its own thread in the OS
int main() {
while (true) {
einkshield_led1 = !einkshield_led1;
wait(0.5);
}
}
Revisions of img/uvision.png
| Revision | Date | Message | Actions |
|---|---|---|---|
| 1:846c97078558 | 2016-07-28 | Update example to https://github.com/ARMmbed/mbed-os-example-blinky at tag mbed-os-5.1.0-rc3 | File Diff Annotate |
| 0:2757d7abb7d9 | 2016-07-28 | Update example to https://github.com/ARMmbed/mbed-os-example-blinky at tag mbed-os-5.1.0-rc1 | File Diff Annotate |
