Write the indicated string to the LCD at the current cursor position and advances the cursor position appropriately.
(self, string)
| 155 | self.move_to(self.cursor_x, self.cursor_y) |
| 156 | |
| 157 | def putstr(self, string): |
| 158 | """Write the indicated string to the LCD at the current cursor |
| 159 | position and advances the cursor position appropriately. |
| 160 | """ |
| 161 | for char in string: |
| 162 | self.putchar(char) |
| 163 | |
| 164 | def custom_char(self, location, charmap): |
| 165 | """Write a character to one of the 8 CGRAM locations, available |
no test coverage detected