settings and load settings

This commit is contained in:
sergiuToporjinschi
2022-02-02 00:16:39 +02:00
parent 24dd595d43
commit cc5cdd6f24
3 changed files with 15 additions and 3 deletions
@@ -69,4 +69,16 @@
<span class="add-on" title="{{ title }}">
<a target="_blank" href="https://marlinfw.org/docs/gcode/{{command}}.html"><i class="fas fa-info-circle"></i></a>
</span>
{% endmacro %}
{% macro m500Icon(title='Save settings in EEPROM', before=true ) %}
{% set title = title|trim %}
{% if before %}
{{ linkToMarlin("M500", "Marlin website") }}
{% endif %}
<span class="add-on" title="{{ title }}">M500</span>
{% if not before %}
{{ linkToMarlin("M500", "Marlin website") }}
{% endif %}
{% endmacro %}