HW
Fork of TextLCD by
Display.cpp
- Committer:
- timtianyang
- Date:
- 2015-09-22
- Revision:
- 9:3a05879a6c08
File content as of revision 9:3a05879a6c08:
#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('_'); }