Causes the cursor to be hidden.
(self)
| 80 | self.LCD_ON_CURSOR) |
| 81 | |
| 82 | def hide_cursor(self): |
| 83 | """Causes the cursor to be hidden.""" |
| 84 | self.hal_write_command(self.LCD_ON_CTRL | self.LCD_ON_DISPLAY) |
| 85 | |
| 86 | def blink_cursor_on(self): |
| 87 | """Turns on the cursor, and makes it blink.""" |
no test coverage detected