Class used to interface with the Nokia N5110 LCD.

Fork of N5110 by Craig Evans

Revision:
18:1af393359298
Parent:
17:780a542d5f8b
Child:
19:ba8addc061ea
--- a/N5110.h	Tue Mar 17 12:56:03 2015 +0000
+++ b/N5110.h	Wed Apr 22 12:41:45 2015 +0000
@@ -210,7 +210,7 @@
 
     /** Print String
     *
-    *   Prints a string of characters to the display.
+    *   Prints a string of characters to the display. String is cut-off after the 83rd pixel.
     *   @param x - the column number (0 to 83)
     *   @param y - the row number (0 to 5) - the display is split into 6 banks - each bank can be considered a row
     */
@@ -218,7 +218,7 @@
 
     /** Print Character
     *
-    *   Sends a character to the display.  Printed at the specified location
+    *   Sends a character to the display.  Printed at the specified location. Character is cut-off after the 83rd pixel.
     *   @param  c - the character to print. Can print ASCII as so printChar('C').
     *   @param x - the column number (0 to 83)
     *   @param y - the row number (0 to 5) - the display is split into 6 banks - each bank can be considered a row