Allows for a 90 frame animated gauge to be display on the uLCD

Dependents:   uLCDgaugeTest

Revision:
1:5666427710f2
Parent:
0:9101c0ce36a1
Child:
2:38006c26dda5
--- a/uLCD_gauges.h	Thu Mar 12 18:19:26 2015 +0000
+++ b/uLCD_gauges.h	Fri Mar 13 14:05:32 2015 +0000
@@ -7,6 +7,7 @@
 class uLCD_gauges {
 public:
     uLCD_gauges(uLCD_4DGL& screen, float min, float max);
+    uLCD_gauges(uLCD_4DGL& screen, float min, float max, long memoryAddressHigh, long memoryAddressLow);
     void start();
     void update(float value);
   
@@ -16,6 +17,8 @@
     float maxVal;
     float mapOffset;
     float mapSlope;
+    long memHigh;
+    long memLow;
 };
  
 #endif