E-Paper Device (EPD) based MiniNote module, powered by mbed on LPC1114FBD48. Shared in public domain with enclosure in 3D step format, hardware interface compatible with microBUS interface. Anyone can contribute on this project.

Dependencies:   mbed _24LCXXX

E-Badge MiniNote Project on mbed/NXP LPC1114 platform

Revision:
0:33994cfad0c2
Child:
2:bb9f154ea2f4
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Ebadge.h	Sun Jun 01 00:47:23 2014 +0000
@@ -0,0 +1,18 @@
+
+#include "mbed.h"
+
+class Ebadge {
+    public:
+        Ebadge(PinName rxd, PinName txd, PinName isp);
+        void reset();
+        bool flash();
+        void terminal_Baud(int baudrate = 115200);
+        void terminal();
+        bool isIspPressed();
+        void update();
+    private:
+        bool _cmd(const char* format);
+        bool _cpRam2Disp();
+    protected:
+        Serial _uart;
+};