Demo program for driving the memory LCD on the Zero Gecko Starter Kit.

Dependencies:   MemoryLCD mbed

This demo program shows how to drive the memory LCD on the Zero Gecko Starter Kit, by using asynchronous transfers.

Information

All examples in this repo are considered EXPERIMENTAL QUALITY, meaning this code has been created as one-off proof-of-concept and is suitable as a demonstration for experimental purposes only. This code will not be regularly maintained by Silicon Labs and there is no guarantee that these projects will work across all environments, SDK versions and hardware.

Files at this revision

API Documentation at this revision

Comitter:
stevew817
Date:
Thu May 28 08:39:29 2015 +0000
Parent:
11:9b7257e888c1
Child:
13:ae8652536e13
Commit message:
Workaround for race condition on HG.

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Wed May 27 12:09:22 2015 +0000
+++ b/main.cpp	Thu May 28 08:39:29 2015 +0000
@@ -96,6 +96,7 @@
                 prevSeconds = seconds;
                 refreshed = false;
                 display.update(refreshCallback);
+                while(!refreshed) sleep();
             }
         }
     }