Turns off (i.e. blanks) the LCD.
(self)
| 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.""" |
| 102 | self.hal_write_command(self.LCD_ON_CTRL) |
| 103 | |
| 104 | def backlight_on(self): |
| 105 | """Turns the backlight on. |
no test coverage detected