HW
Fork of TextLCD by
Diff: Display.cpp
- Revision:
- 9:3a05879a6c08
--- /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('_'); +}