Clears the LCD display and moves the cursor to the top left corner.
(self)
| 66 | self.display_on() |
| 67 | |
| 68 | def clear(self): |
| 69 | """Clears the LCD display and moves the cursor to the top left |
| 70 | corner. |
| 71 | """ |
| 72 | self.hal_write_command(self.LCD_CLR) |
| 73 | self.hal_write_command(self.LCD_HOME) |
| 74 | self.cursor_x = 0 |
| 75 | self.cursor_y = 0 |
| 76 | |
| 77 | def show_cursor(self): |
| 78 | """Causes the cursor to be made visible.""" |
no test coverage detected