diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-09-20 12:40:30 -0400 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2018-09-21 16:39:38 -0400 |
commit | c8d9d575a1eaddf536002b3a4330e5e3b4dc9ad1 (patch) | |
tree | 41f94a7c57556d374ee0050dbcb9ab1a104626c4 /klippy/extras/display/icons.py | |
parent | 2a5778be3a921a59733ee85791d18ae0b8ff4a92 (diff) | |
download | kutter-c8d9d575a1eaddf536002b3a4330e5e3b4dc9ad1.tar.gz kutter-c8d9d575a1eaddf536002b3a4330e5e3b4dc9ad1.tar.xz kutter-c8d9d575a1eaddf536002b3a4330e5e3b4dc9ad1.zip |
display: Support writing single character glyphs using write_glyph()
Add write_glyph() support to hd44780.py. Update uc1701.py and
st7920.py to support writing single character glyphs via
write_glyph().
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/extras/display/icons.py')
-rw-r--r-- | klippy/extras/display/icons.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/klippy/extras/display/icons.py b/klippy/extras/display/icons.py index 622c9cff..ccf18e88 100644 --- a/klippy/extras/display/icons.py +++ b/klippy/extras/display/icons.py @@ -4,7 +4,7 @@ # # This file may be distributed under the terms of the GNU GPLv3 license. -nozzle_icon = [ +extruder_icon = [ 0b0000000000000000, 0b0000000000000000, 0b0000111111110000, @@ -138,7 +138,7 @@ feedrate_icon = [ ] Icons16x16 = { - 'nozzle': nozzle_icon, + 'extruder': extruder_icon, 'bed': bed_icon, 'bed_heat1': bed_heat1_icon, 'bed_heat2': bed_heat2_icon, 'fan1': fan1_icon, 'fan2': fan2_icon, 'feedrate': feedrate_icon, |