diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-06-10 20:58:45 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-06-11 00:18:23 -0400 |
commit | 9465618adb0ad5c93209f661c0cb3c3c38926ba8 (patch) | |
tree | 9396f784d05b41735b309039eb2d2f2c354eaac6 /klippy/extras/display/hd44780.py | |
parent | 467e8e6f40445005cc1da4fb3a7ec1ad0ed45479 (diff) | |
download | kutter-9465618adb0ad5c93209f661c0cb3c3c38926ba8.tar.gz kutter-9465618adb0ad5c93209f661c0cb3c3c38926ba8.tar.xz kutter-9465618adb0ad5c93209f661c0cb3c3c38926ba8.zip |
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>
Diffstat (limited to 'klippy/extras/display/hd44780.py')
-rw-r--r-- | klippy/extras/display/hd44780.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/display/hd44780.py b/klippy/extras/display/hd44780.py index 8ef4102c..7c2477cb 100644 --- a/klippy/extras/display/hd44780.py +++ b/klippy/extras/display/hd44780.py @@ -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 |