mirror of https://github.com/Desuuuu/klipper.git
docs: Note changes to glyph names
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
3dcac1308e
commit
d94dd8e9fd
|
@ -6,6 +6,11 @@ All dates in this document are approximate.
|
||||||
|
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
20200608: The LCD display support has changed the name of some
|
||||||
|
internal "glyphs". If a custom display layout was implemented it may
|
||||||
|
be necessary to update to the latest glyph names (see
|
||||||
|
klippy/extras/display/display.cfg for a list of available glyphs).
|
||||||
|
|
||||||
20200606: The pin names on linux mcu have changed. Pins now have names
|
20200606: The pin names on linux mcu have changed. Pins now have names
|
||||||
of the form `gpiochip<chipid>/gpio<gpio>`. For gpiochip0 you can also
|
of the form `gpiochip<chipid>/gpio<gpio>`. For gpiochip0 you can also
|
||||||
use a short `gpio<gpio>`. For example, what was previously referred
|
use a short `gpio<gpio>`. For example, what was previously referred
|
||||||
|
|
|
@ -186,6 +186,7 @@ text:
|
||||||
position: 3, 0
|
position: 3, 0
|
||||||
text: { render("_print_status") }
|
text: { render("_print_status") }
|
||||||
|
|
||||||
|
|
||||||
######################################################################
|
######################################################################
|
||||||
# Default display glyphs
|
# Default display glyphs
|
||||||
######################################################################
|
######################################################################
|
||||||
|
@ -322,3 +323,12 @@ data:
|
||||||
0000000000000000
|
0000000000000000
|
||||||
0000000000000000
|
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).
|
||||||
|
|
|
@ -197,5 +197,5 @@ TextGlyphs = {
|
||||||
'degrees': '\x04',
|
'degrees': '\x04',
|
||||||
'usb': '\x05',
|
'usb': '\x05',
|
||||||
'sd': '\x06',
|
'sd': '\x06',
|
||||||
'fan': '\x07', 'fan1': '\x07', 'fan2': '\x07',
|
'fan1': '\x07', 'fan2': '\x07',
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue