Slight changes to display glyphs and template
This commit is contained in:
parent
d512af9ef7
commit
9c3c9432e5
53
display.cfg
53
display.cfg
|
|
@ -78,6 +78,45 @@ data:
|
||||||
......***.......
|
......***.......
|
||||||
|
|
||||||
|
|
||||||
|
[display_glyph voron_heart]
|
||||||
|
data:
|
||||||
|
................
|
||||||
|
..****...*****..
|
||||||
|
.**************.
|
||||||
|
******..**..****
|
||||||
|
*****..**..*****
|
||||||
|
****..**..******
|
||||||
|
*******..*******
|
||||||
|
.*****..**..***.
|
||||||
|
.****..**..****.
|
||||||
|
..**..**..****..
|
||||||
|
...**********...
|
||||||
|
....********....
|
||||||
|
.....******.....
|
||||||
|
......****......
|
||||||
|
.......**.......
|
||||||
|
................
|
||||||
|
|
||||||
|
[display_glyph ercfcarrot]
|
||||||
|
data:
|
||||||
|
........***.....
|
||||||
|
***....***......
|
||||||
|
.**....**.......
|
||||||
|
.****..**.......
|
||||||
|
...**..*........
|
||||||
|
...***.*..**....
|
||||||
|
.........***....
|
||||||
|
..****..***.....
|
||||||
|
****...***..*...
|
||||||
|
***...***..***..
|
||||||
|
**...***..***...
|
||||||
|
......*..***..*.
|
||||||
|
........***..**.
|
||||||
|
.........*..***.
|
||||||
|
............***.
|
||||||
|
................
|
||||||
|
|
||||||
|
|
||||||
#####################################################################
|
#####################################################################
|
||||||
# Display Template/Definition
|
# Display Template/Definition
|
||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
@ -97,8 +136,7 @@ text:
|
||||||
{% set pos = printer.toolhead.position %}
|
{% set pos = printer.toolhead.position %}
|
||||||
{ "X%-4.0fY%-4.0fZ%-5.2f" % (pos.x, pos.y, pos.z) }
|
{ "X%-4.0fY%-4.0fZ%-5.2f" % (pos.x, pos.y, pos.z) }
|
||||||
{% else %}
|
{% else %}
|
||||||
~voron~
|
{" V0.xxx"}
|
||||||
{" V2.823"}
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
[display_data __voron_display extruder]
|
[display_data __voron_display extruder]
|
||||||
|
|
@ -133,6 +171,17 @@ text: { "%6s" % (render("_printing_time").strip(),) }
|
||||||
position: 3, 0
|
position: 3, 0
|
||||||
text : { render("_vprint_status") }
|
text : { render("_vprint_status") }
|
||||||
|
|
||||||
|
[display_data __voron_display voron_logo]
|
||||||
|
position: 3, 10
|
||||||
|
text:
|
||||||
|
{% if printer.display_status.message %}
|
||||||
|
{% elif printer.idle_timeout.printing_time %}
|
||||||
|
{% else %}
|
||||||
|
~voron~
|
||||||
|
~voron_heart~
|
||||||
|
~ercfcarrot~
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
|
||||||
#####################################################################
|
#####################################################################
|
||||||
# Display Specific Macros
|
# Display Specific Macros
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue