Graphical demo for the LPC4088 Experiment Base Board with one of the Display Expansion Kits. This program displays how to write text in different fonts.

Dependencies:   EALib mbed

Revision:
0:5e5e9ec91fc8
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/TextDemo.h	Thu Jun 25 10:30:15 2015 +0000
@@ -0,0 +1,23 @@
+
+#ifndef TEXTDEMO_H
+#define TEXTDEMO_H
+
+#include "EaLcdBoardGPIO.h"
+#include "lpc_swim.h"
+#include "lpc_swim_font.h"
+
+class TextDemo {
+public:
+
+    TextDemo(uint8_t *pFrameBuf, uint16_t dispWidth, uint16_t dispHeight);
+    
+    void run(EaLcdBoardGPIO& lcdBoard, uint32_t loops, uint32_t delayMs);
+
+protected:
+    
+private:
+    SWIM_WINDOW_T _win;
+};
+
+#endif /* TEXTDEMO_H */
+