diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-06-08 16:53:47 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-06-08 16:55:09 -0400 |
commit | d94dd8e9fdb1bde245216ada4cfd2e16bf51c4e1 (patch) | |
tree | 64d9c052880ca61879aa90894f9528855c1eee07 /klippy/extras/display | |
parent | 3dcac1308e6fe132487c45824d142609f2571df6 (diff) | |
download | kutter-d94dd8e9fdb1bde245216ada4cfd2e16bf51c4e1.tar.gz kutter-d94dd8e9fdb1bde245216ada4cfd2e16bf51c4e1.tar.xz kutter-d94dd8e9fdb1bde245216ada4cfd2e16bf51c4e1.zip |
docs: Note changes to glyph names
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/extras/display')
-rw-r--r-- | klippy/extras/display/display.cfg | 10 | ||||
-rw-r--r-- | klippy/extras/display/hd44780.py | 2 |
2 files changed, 11 insertions, 1 deletions
diff --git a/klippy/extras/display/display.cfg b/klippy/extras/display/display.cfg index bb395cc4..4939792b 100644 --- a/klippy/extras/display/display.cfg +++ b/klippy/extras/display/display.cfg @@ -186,6 +186,7 @@ text: position: 3, 0 text: { render("_print_status") } + ###################################################################### # Default display glyphs ###################################################################### @@ -322,3 +323,12 @@ data: 0000000000000000 0000000000000000 0000000000000000 + +# In addition to the above glyphs, 16x4 displays also have the +# following hard-coded single character glyphs: right_arrow, degrees. + +# The 20x4 displays do not have configurable glyphs. They do have +# hard-coded support for the following single character glyphs: +# right_arrow, degrees, extruder, bed, bed_heat1 (same as bed), +# bed_heat2 (same as bed), feedrate, clock, usb, sd, fan1, fan2 (same +# as fan1). diff --git a/klippy/extras/display/hd44780.py b/klippy/extras/display/hd44780.py index b1faef45..19ad0d3e 100644 --- a/klippy/extras/display/hd44780.py +++ b/klippy/extras/display/hd44780.py @@ -197,5 +197,5 @@ TextGlyphs = { 'degrees': '\x04', 'usb': '\x05', 'sd': '\x06', - 'fan': '\x07', 'fan1': '\x07', 'fan2': '\x07', + 'fan1': '\x07', 'fan2': '\x07', } |