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:
10:6f3abb40202b
Parent:
9:7701f0126ba7
Child:
12:022993561fd8
Child:
13:908644099648
--- a/N5110.cpp	Tue May 20 19:43:52 2014 +0000
+++ b/N5110.cpp	Wed Jul 16 08:42:27 2014 +0000
@@ -72,7 +72,7 @@
 {
     setBrightness(0.0);  // turn backlight off
     clearRAM();   // clear RAM to ensure specified current consumption
-    // send command to ensure we are in basic model
+    // send command to ensure we are in basic mode
     sendCommand(0x20 | CMD_FS_ACTIVE_MODE | CMD_FS_HORIZONTAL_MODE | CMD_FS_BASIC_MODE);
     // clear the display
     sendCommand(CMD_DC_CLEAR_DISPLAY);