Slightly revised version of the N5110 library created by Craig A. Evans

Fork of N5110 by Craig Evans

Revision:
20:de191597da42
Parent:
19:ba8addc061ea
--- a/N5110.cpp	Thu Apr 23 18:57:52 2015 +0000
+++ b/N5110.cpp	Fri May 06 20:00:52 2016 +0000
@@ -87,7 +87,7 @@
 }
 
 // function to change LED backlight brightness
-void N5110::setBrightness(float brightness)
+void N5110::setBrightness(double brightness)
 {
     // check whether brightness is within range
     if (brightness < 0.0)
@@ -282,7 +282,7 @@
 }
 
 // function to plot array on display
-void N5110::plotArray(float array[])
+void N5110::plotArray(double array[])
 {
 
     int i;