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

Dependents:   BrickBreaker

Fork of N5110 by Craig Evans

Revision:
21:a604dfa3bf7a
Parent:
20:07627b054c2d
Child:
22:5e20f9c16da0
--- a/N5110.h	Wed Apr 29 10:31:44 2015 +0000
+++ b/N5110.h	Fri May 01 09:15:10 2015 +0000
@@ -347,7 +347,7 @@
 
 };
 
-const unsigned char font5x7[480] = {
+const unsigned char font5x7[485] = {
     0x00, 0x00, 0x00, 0x00, 0x00,// (space)
     0x00, 0x00, 0x5F, 0x00, 0x00,// !
     0x00, 0x07, 0x00, 0x07, 0x00,// "
@@ -443,7 +443,9 @@
     0x00, 0x00, 0x7F, 0x00, 0x00,// |
     0x00, 0x41, 0x36, 0x08, 0x00,// }
     0x08, 0x08, 0x2A, 0x1C, 0x08,// ->
-    0x08, 0x1C, 0x2A, 0x08, 0x08 // <-
+    0x08, 0x1C, 0x2A, 0x08, 0x08,// <-
+    0x08, 0x1C, 0x38, 0x1C, 0x08// heart
+    
 };
 
 #endif