mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-08-06 21:44:13 -06:00
display: Rework write_graphics() to take one character cell at a time
Change write_graphics() from taking one pixel row of n characters to taking all the rows and columns for one character cell. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
467e8e6f40
commit
9465618adb
4 changed files with 46 additions and 56 deletions
|
@ -112,7 +112,7 @@ class HD44780:
|
|||
self.write_text(x, y, char)
|
||||
return 1
|
||||
return 0
|
||||
def write_graphics(self, x, y, pixel_row, pixel_col):
|
||||
def write_graphics(self, x, y, data):
|
||||
pass
|
||||
def clear(self):
|
||||
spaces = ' ' * 40
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue