MCPcopy Create free account
hub / github.com/RetiredWizard/PyDOS / putstr

Method putstr

cpython/lib/lcd_api.py:157–162  ·  view source on GitHub ↗

Write the indicated string to the LCD at the current cursor position and advances the cursor position appropriately.

(self, string)

Source from the content-addressed store, hash-verified

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

Callers 3

lcdPrintFunction · 0.80
lcdScrollFunction · 0.80
displayTempFunction · 0.80

Calls 1

putcharMethod · 0.95

Tested by

no test coverage detected