BLE-writeable Display Puck with an e-paper display. Built on the Puck IOT platform.

Dependencies:   Puck lz mbed seeedstudio-epaper

The Display puck is a puck with an e-paper display that can show arbitrary black and white images received over Bluetooth LE.

A tutorial for the Display Puck is available on GitHub.

Tutorials and in-depth documentation for the Puck platform is available at the project's GitHub page

Files at this revision

API Documentation at this revision

Comitter:
stiaje
Date:
Thu Jul 31 13:44:00 2014 +0000
Parent:
4:cfb711a2c71f
Child:
6:9c2618084d1e
Commit message:
Remove unnecessary UUID wrapper call

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Tue Jul 29 14:04:30 2014 +0000
+++ b/main.cpp	Thu Jul 31 13:44:00 2014 +0000
@@ -14,9 +14,9 @@
 EPD_Class EPD(p0, p2, p3, p8, p5, p6, p7);
 
 
-const UUID DISPLAY_SERVICE_UUID = UUID(stringToUUID("bftj display    "));
-const UUID COMMAND_UUID = UUID(stringToUUID("bftj display com"));
-const UUID DATA_UUID = UUID(stringToUUID("bftj display dat"));
+const UUID DISPLAY_SERVICE_UUID = stringToUUID("bftj display    ");
+const UUID COMMAND_UUID = stringToUUID("bftj display com");
+const UUID DATA_UUID = stringToUUID("bftj display dat");
 
 
  /*