From 9c3c9432e561d4906589d3a04a68d17ab00882ac Mon Sep 17 00:00:00 2001 From: Zach Schimke Date: Tue, 17 Aug 2021 21:30:19 -0700 Subject: [PATCH] Slight changes to display glyphs and template --- display.cfg | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 51 insertions(+), 2 deletions(-) diff --git a/display.cfg b/display.cfg index d23dbb1..2c26df3 100644 --- a/display.cfg +++ b/display.cfg @@ -78,6 +78,45 @@ data: ......***....... +[display_glyph voron_heart] +data: + ................ + ..****...*****.. + .**************. + ******..**..**** + *****..**..***** + ****..**..****** + *******..******* + .*****..**..***. + .****..**..****. + ..**..**..****.. + ...**********... + ....********.... + .....******..... + ......****...... + .......**....... + ................ + +[display_glyph ercfcarrot] +data: + ........***..... + ***....***...... + .**....**....... + .****..**....... + ...**..*........ + ...***.*..**.... + .........***.... + ..****..***..... + ****...***..*... + ***...***..***.. + **...***..***... + ......*..***..*. + ........***..**. + .........*..***. + ............***. + ................ + + ##################################################################### # Display Template/Definition ##################################################################### @@ -97,8 +136,7 @@ text: {% set pos = printer.toolhead.position %} { "X%-4.0fY%-4.0fZ%-5.2f" % (pos.x, pos.y, pos.z) } {% else %} - ~voron~ - {" V2.823"} + {" V0.xxx"} {% endif %} [display_data __voron_display extruder] @@ -133,6 +171,17 @@ text: { "%6s" % (render("_printing_time").strip(),) } position: 3, 0 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