Simple library for interfacing to Nokia 5110 LCD display (as found on the SparkFun website).

Fork of N5110 by Craig Evans

Revision:
20:56ef5562db2f
Parent:
19:ba8addc061ea
--- a/N5110.h	Thu Apr 23 18:57:52 2015 +0000
+++ b/N5110.h	Mon Apr 27 09:33:38 2015 +0000
@@ -317,7 +317,7 @@
 
 private:
 
-    void setXYAddress(int x, int y);
+    
     void initSPI();
     void turnOn();
     void reset();
@@ -328,6 +328,7 @@
 
 public:
     unsigned char buffer[84][6];  // screen buffer - the 6 is for the banks - each one is 8 bits;
+    void setXYAddress(int x, int y);
 
 private:  // private variables
     SPI*    spi;