mirror of
https://github.com/esphome/esphome.git
synced 2026-03-04 03:38:20 -07:00
Implementation of LCD Clear (#781)
* Implementation of LCD Clear * Implementation of LCD Clear * Implementation of LCD Clear * Implementation of LCD Clear
This commit is contained in:
@@ -148,6 +148,11 @@ void LCDDisplay::printf(const char *format, ...) {
|
||||
if (ret > 0)
|
||||
this->print(0, 0, buffer);
|
||||
}
|
||||
void LCDDisplay::clear() {
|
||||
// clear display, also sets DDRAM address to 0 (home)
|
||||
this->command_(LCD_DISPLAY_COMMAND_CLEAR_DISPLAY);
|
||||
delay(2);
|
||||
}
|
||||
#ifdef USE_TIME
|
||||
void LCDDisplay::strftime(uint8_t column, uint8_t row, const char *format, time::ESPTime time) {
|
||||
char buffer[64];
|
||||
|
||||
Reference in New Issue
Block a user