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:
31:8a0c21042f82
Parent:
29:5bc91bd44c77
Child:
33:d80e568a2e18
--- a/N5110.h	Thu Feb 16 15:32:05 2017 +0000
+++ b/N5110.h	Thu Feb 16 15:36:44 2017 +0000
@@ -222,6 +222,11 @@
           PinName const sclkPin,
           PinName const ledPin);
 
+    /**
+     * Free allocated memory when object goes out of scope
+     */
+    ~N5110();
+
     /** Initialise display
     *
     *   Powers up the display and turns on backlight (50% brightness default).