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

Dependents:   LV7_LCDtest LV7_Grupa5_Tim003_Zadatak1 lv7_Grupa5_Tim008_zad1 LV7_PAI_Grupa5_tim10_Zadatak1 ... more

This library is designed to make it easy to interface an mbed with a Nokia 5110 LCD display.

These can be found at Sparkfun (https://www.sparkfun.com/products/10168) and Adafruit (http://www.adafruit.com/product/338).

The library uses the SPI peripheral on the mbed which means it is much faster sending data to the display than other libraries available on other platforms that use software SPI.

The library can print strings as well as controlling individual pixels, meaning that both text and primitive graphics can be displayed.

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