mbed-os-example-blinky_EinkShield

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

/media/uploads/jauming/blinky.png

Pinout

/media/uploads/jauming/mbed_pinout_v05.png

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);
    }
}

Revision:
29:0b58d21e87d6
Parent:
22:af9dcf379926
Child:
73:acf49c59625d
--- a/main.cpp	Tue Feb 28 13:30:04 2017 +0000
+++ b/main.cpp	Sun Mar 05 20:30:02 2017 +0000
@@ -3,7 +3,6 @@
 DigitalOut led1(LED1);
 
 // main() runs in its own thread in the OS
-// (note the calls to wait below for delays)
 int main() {
     while (true) {
         led1 = !led1;