Library for interfacing to Nokia 5110 LCD display (as found on the SparkFun website). Used & amended by D.Leaming, University of Lincoln, December 2021 v01

Files at this revision

API Documentation at this revision

Comitter:
legstar85
Date:
Fri Dec 17 08:26:58 2021 +0000
Parent:
52:09994ce3be7b
Commit message:
Used & amended by D.Leaming, University of Lincoln, December 2021

Changed in this revision

Bitmap.cpp Show annotated file Show diff for this revision Revisions of this file
Bitmap.h Show annotated file Show diff for this revision Revisions of this file
N5110.cpp Show annotated file Show diff for this revision Revisions of this file
N5110.h Show annotated file Show diff for this revision Revisions of this file
diff -r 09994ce3be7b -r 200be703ee3b Bitmap.cpp
--- a/Bitmap.cpp	Thu Dec 02 22:21:00 2021 +0000
+++ b/Bitmap.cpp	Fri Dec 17 08:26:58 2021 +0000
@@ -1,3 +1,17 @@
+/* * Print String
+*
+* Prints a string of characters to the screen buffer, string is cut off after the 83rd  pixel.
+* @param x - the column number (0 to 83)
+* @param y - the row number (0-5) - the display is split into 6 banks - each bank can be considered a row
+* @author - David Leaming - 25574043
+* @ Date - December 2021
+*
+* Acknowledgements 
+* Craig A. Evans, University of Leeds, TMP102 Library ,Feb 2016
+* Dr Edmond Nurellari, University of Lincoln, Joystick & N5110 Libraries
+*
+*/ 
+
 #include "Bitmap.h"
 
 #include <iostream>
diff -r 09994ce3be7b -r 200be703ee3b Bitmap.h
--- a/Bitmap.h	Thu Dec 02 22:21:00 2021 +0000
+++ b/Bitmap.h	Fri Dec 17 08:26:58 2021 +0000
@@ -1,3 +1,17 @@
+/* * Print String
+*
+* Prints a string of characters to the screen buffer, string is cut off after the 83rd  pixel.
+* @param x - the column number (0 to 83)
+* @param y - the row number (0-5) - the display is split into 6 banks - each bank can be considered a row
+* @author - David Leaming - 25574043
+* @ Date - December 2021
+*
+* Acknowledgements 
+* Craig A. Evans, University of Leeds, TMP102 Library ,Feb 2016
+* Dr Edmond Nurellari, University of Lincoln, Joystick & N5110 Libraries
+*
+*/ 
+
 #ifndef BITMAP_H
 #define BITMAP_H
 
diff -r 09994ce3be7b -r 200be703ee3b N5110.cpp
--- a/N5110.cpp	Thu Dec 02 22:21:00 2021 +0000
+++ b/N5110.cpp	Fri Dec 17 08:26:58 2021 +0000
@@ -1,3 +1,17 @@
+/* * Print String
+*
+* Prints a string of characters to the screen buffer, string is cut off after the 83rd  pixel.
+* @param x - the column number (0 to 83)
+* @param y - the row number (0-5) - the display is split into 6 banks - each bank can be considered a row
+* @author - David Leaming - 25574043
+* @ Date - December 2021
+*
+* Acknowledgements 
+* Craig A. Evans, University of Leeds, TMP102 Library ,Feb 2016
+* Dr Edmond Nurellari, University of Lincoln, Joystick & N5110 Libraries
+*
+*/ 
+
 #include "mbed.h"
 #include "N5110.h"
 
diff -r 09994ce3be7b -r 200be703ee3b N5110.h
--- a/N5110.h	Thu Dec 02 22:21:00 2021 +0000
+++ b/N5110.h	Fri Dec 17 08:26:58 2021 +0000
@@ -1,3 +1,17 @@
+/* * Print String
+*
+* Prints a string of characters to the screen buffer, string is cut off after the 83rd  pixel.
+* @param x - the column number (0 to 83)
+* @param y - the row number (0-5) - the display is split into 6 banks - each bank can be considered a row
+* @author - David Leaming - 25574043
+* @ Date - December 2021
+*
+* Acknowledgements 
+* Craig A. Evans, University of Leeds, TMP102 Library ,Feb 2016
+* Dr Edmond Nurellari, University of Lincoln, Joystick & N5110 Libraries
+*
+*/ 
+
 #ifndef N5110_H
 #define N5110_H