diff options
Diffstat (limited to 'klippy/extras/display/display.cfg')
-rw-r--r-- | klippy/extras/display/display.cfg | 134 |
1 files changed, 128 insertions, 6 deletions
diff --git a/klippy/extras/display/display.cfg b/klippy/extras/display/display.cfg index 1e9d152e..cddc9476 100644 --- a/klippy/extras/display/display.cfg +++ b/klippy/extras/display/display.cfg @@ -188,7 +188,7 @@ text: { render("_print_status") } ###################################################################### -# Default display glyphs +# Default 16x4 glyphs ###################################################################### [display_glyph extruder] @@ -327,8 +327,130 @@ data: # 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). + +###################################################################### +# Default 20x4 glyphs +###################################################################### + +[display_glyph extruder] +hd44780_slot: 0 +hd44780_data: + ..*.. + .*.*. + .*.*. + .*.*. + .*.*. + *...* + *...* + .***. + +[display_glyph bed] +hd44780_slot: 1 +hd44780_data: + ..... + ***** + *.*.* + *...* + *.*.* + ***** + ..... + ..... + +[display_glyph bed_heat1] +hd44780_slot: 1 +hd44780_data: + ..... + ***** + *.*.* + *...* + *.*.* + ***** + ..... + ..... + +[display_glyph bed_heat2] +hd44780_slot: 1 +hd44780_data: + ..... + ***** + *.*.* + *...* + *.*.* + ***** + ..... + ..... + +[display_glyph fan] +hd44780_slot: 2 +hd44780_data: + ..... + *..** + **.*. + ..*.. + .*.** + **..* + ..... + ..... + +[display_glyph feedrate] +hd44780_slot: 3 +hd44780_data: + ***.. + *.... + **... + *.*** + ..*.* + ..**. + ..*.* + ..... + +[display_glyph clock] +hd44780_slot: 4 +hd44780_data: + ..... + .***. + *..** + *.*.* + *...* + .***. + ..... + ..... + +[display_glyph degrees] +hd44780_slot: 5 +hd44780_data: + .**.. + *..*. + *..*. + .**.. + ..... + ..... + ..... + ..... + +[display_glyph usb] +hd44780_slot: 6 +hd44780_data: + .***. + .***. + .***. + ***** + ***** + ***** + ..*.. + ..*.. + +[display_glyph sd] +hd44780_slot: 6 +hd44780_data: + ..... + ..*** + .**** + ***** + ***** + ***** + ***** + ..... + +# In addition to the above glyphs, 20x4 displays also have the +# following hard-coded glyphs: right_arrow. |