diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-09-20 13:01:51 -0400 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2018-09-21 16:39:38 -0400 |
commit | 30a49d3186c8bee11581422901b46be23b07e29e (patch) | |
tree | 192129b2b50a31fd3e0ed63ee57f97988d2ab957 /klippy/extras/display/hd44780.py | |
parent | c8d9d575a1eaddf536002b3a4330e5e3b4dc9ad1 (diff) | |
download | kutter-30a49d3186c8bee11581422901b46be23b07e29e.tar.gz kutter-30a49d3186c8bee11581422901b46be23b07e29e.tar.xz kutter-30a49d3186c8bee11581422901b46be23b07e29e.zip |
display: Use write_glyph() when writing special characters
Always use the write_glyph() method when writing special characters
during status screen updates.
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 | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/klippy/extras/display/hd44780.py b/klippy/extras/display/hd44780.py index d864ceaa..2bdf3a30 100644 --- a/klippy/extras/display/hd44780.py +++ b/klippy/extras/display/hd44780.py @@ -11,14 +11,6 @@ BACKGROUND_PRIORITY_CLOCK = 0x7fffffff00000000 HD44780_DELAY = .000037 class HD44780: - char_right_arrow = '\x7e' - char_thermometer = '\x00' - char_heater_bed = '\x01' - char_speed_factor = '\x02' - char_clock = '\x03' - char_degrees = '\x04' - char_usb = '\x05' - char_sd = '\x06' def __init__(self, config): self.printer = config.get_printer() # pin config |