HW

Fork of TextLCD by Simon Ford

Revision:
9:3a05879a6c08
diff -r e4cb7ddee0d3 -r 3a05879a6c08 Display.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Display.cpp	Tue Sep 22 04:43:00 2015 +0000
@@ -0,0 +1,9 @@
+#include "Display.h"
+void Display::LCDEat(int pos){
+    lcd.locate(pos,1);
+    lcd.putc(pos+49);  
+}
+void Display::LCDDoneEating(int pos){
+    lcd.locate(pos,1);
+    lcd.putc('_');  
+}