Display driver for the Vives city game

Dependencies:   TextLCD

Revision:
0:80ce68cdf568
Child:
4:f056a09af806
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/CostumCharacters.h	Tue Apr 25 19:47:42 2017 +0000
@@ -0,0 +1,35 @@
+#pragma once
+#include "TextLCD.h"
+
+namespace VivesCityGame
+{
+
+class CostumCharacters
+{
+private:
+    TextLCD * lcd;
+
+public:
+/*
+    const char batteryIcon[][8];
+
+    const char gpsIcon[][8];
+
+    const char loraIcon[][8];
+
+    const char loraStatusIcon[][8];
+*/
+
+public:
+
+    CostumCharacters( TextLCD * lcd );
+    
+    void setBatteryIcon( int lvl );
+    void setGpsIcon( bool gpsFix );
+    void setLoraIcon( bool lora );
+    void setLoraStatusIcon( int loraStatus );
+    
+
+
+};
+};