aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/extras/display/display.py
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2018-09-20 12:40:30 -0400
committerKevinOConnor <kevin@koconnor.net>2018-09-21 16:39:38 -0400
commitc8d9d575a1eaddf536002b3a4330e5e3b4dc9ad1 (patch)
tree41f94a7c57556d374ee0050dbcb9ab1a104626c4 /klippy/extras/display/display.py
parent2a5778be3a921a59733ee85791d18ae0b8ff4a92 (diff)
downloadkutter-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/display.py')
-rw-r--r--klippy/extras/display/display.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/klippy/extras/display/display.py b/klippy/extras/display/display.py
index 3ab2d7f2..580f8b8d 100644
--- a/klippy/extras/display/display.py
+++ b/klippy/extras/display/display.py
@@ -142,12 +142,12 @@ class PrinterLCD:
# Heaters
if self.extruder0 is not None:
info = self.extruder0.get_heater().get_status(eventtime)
- self.lcd_chip.write_glyph(0, 0, 'nozzle')
+ self.lcd_chip.write_glyph(0, 0, 'extruder')
self.draw_heater(2, 0, info)
extruder_count = 1
if self.extruder1 is not None:
info = self.extruder1.get_heater().get_status(eventtime)
- self.lcd_chip.write_glyph(0, 1, 'nozzle')
+ self.lcd_chip.write_glyph(0, 1, 'extruder')
self.draw_heater(2, 1, info)
extruder_count = 2
if self.heater_bed is not None: