Functions related to printing to the LCD

Dependents:   Year3_Version7_ET

Files at this revision

API Documentation at this revision

Comitter:
emilytrembeth
Date:
Thu Jan 03 13:46:31 2019 +0000
Parent:
1:de2f80988f12
Commit message:
Made more clear

Changed in this revision

lcd_functions.cpp Show annotated file Show diff for this revision Revisions of this file
lcd_functions.hpp Show annotated file Show diff for this revision Revisions of this file
--- a/lcd_functions.cpp	Fri Dec 07 15:26:28 2018 +0000
+++ b/lcd_functions.cpp	Thu Jan 03 13:46:31 2019 +0000
@@ -2,8 +2,8 @@
 #include "lcd_functions.hpp"
 #include "serial_functions.hpp"
 
-
-void displayOnLcd() {
+//NEEDS TO BE MOVED AS HAS NOTHING TODO WITH LCD
+void UpdateTime() {
     date_mutex.lock();
     
     myled = !myled;
--- a/lcd_functions.hpp	Fri Dec 07 15:26:28 2018 +0000
+++ b/lcd_functions.hpp	Thu Jan 03 13:46:31 2019 +0000
@@ -7,6 +7,6 @@
 extern Mutex date_mutex;
 extern time_t currentTime;
 
-extern void displayOnLcd();
+extern void UpdateTime();
 
 #endif
\ No newline at end of file