Turns on (i.e. unblanks) the LCD.
(self)
| 94 | self.LCD_ON_CURSOR) |
| 95 | |
| 96 | def display_on(self): |
| 97 | """Turns on (i.e. unblanks) the LCD.""" |
| 98 | self.hal_write_command(self.LCD_ON_CTRL | self.LCD_ON_DISPLAY) |
| 99 | |
| 100 | def display_off(self): |
| 101 | """Turns off (i.e. blanks) the LCD.""" |
no test coverage detected