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:
4:e923c54c1c7d
Parent:
2:e93021cfb0a9
Child:
5:6ea180eef702
--- a/N5110.h	Sun Jan 26 20:09:15 2014 +0000
+++ b/N5110.h	Sun Jan 26 20:14:07 2014 +0000
@@ -2,17 +2,18 @@
 @file N5110.h
 
 @brief  Simple library for interfacing with Nokia 5110 LCD display (https://www.sparkfun.com/products/10168) using the hardware SPI on the mbed.
-The display is powered from a GPIO pin meaning it can be controlled via software.  The LED backlight is also software-controllable (via PWM pin).
--Can print characters and strings to the display using the included 5x7 font.  
--The library also implements a screen buffer so that individual pixels on the display (84 x 48) can be set, cleared and read.
+@brief The display is powered from a GPIO pin meaning it can be controlled via software.  The LED backlight is also software-controllable (via PWM pin).
+@brief Can print characters and strings to the display using the included 5x7 font.  
+@brief The library also implements a screen buffer so that individual pixels on the display (84 x 48) can be set, cleared and read.
 
-Acknowledgements to Chris Yan's Nokia_5110 Library.
+@brief Acknowledgements to Chris Yan's Nokia_5110 Library.
 
-Revision 1.0
+@brief Revision 1.0
 
 @author Craig A. Evans
 @date   January 2014
 
+
 */
 
 #ifndef N5110_H
@@ -44,7 +45,7 @@
 
 #include "mbed.h"
 
-/** Class for interfacing with Nokia 5110 LCD
+/** Class for interfacing with Nokia 5110 LCD display
  *
  * Example:
  * @code