E Ink / Mbed OS 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:
24:a0164b11ed6f
Parent:
14:e4cde3e77fdc
Child:
27:e64a31d541da
--- a/README.md	Tue Jan 17 11:00:04 2017 +0000
+++ b/README.md	Thu Feb 02 12:00:04 2017 +0000
@@ -74,7 +74,7 @@
 
 ## Troubleshooting
 
-1. Make sure `mbed-cli` is working correctly and its version is greater than `0.8.9`
+1. Make sure `mbed-cli` is working correctly and its version is `>1.0.0`
 
  ```
  mbed --version