settings and load settings
This commit is contained in:
@@ -70,3 +70,15 @@
|
||||
<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 %}
|
||||
@@ -84,8 +84,7 @@
|
||||
<div class="input-prepend input-append">
|
||||
{{ snipped.linkToMarlin("M92", "Marlin website") }}
|
||||
<span class="add-on" title="Command to change number of steps/mm for E axe" data-bind="text: $root.results.newStepsDisplay"></span>
|
||||
{{ snipped.linkToMarlin("M500", "Marlin website") }}
|
||||
<span class="add-on" title="Command for saving steps in EEPROM">M500</span>
|
||||
{{ snipped.m500Icon() }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -34,6 +34,7 @@ Current bed temperature: <span data-bind="text: bedCurrentTemp"></span>° Be
|
||||
<span class="add-on" title=""> S</span>
|
||||
<input type="number" id="tunningPIDToolTemp" class="input-mini" step="1" min="100" max="280" title="Target temperature" data-bind="value: $root.pid.targetTemp">
|
||||
<span class="add-on" title=""> U1</span>
|
||||
{{ snipped.m500Icon() }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -42,7 +43,7 @@ Current bed temperature: <span data-bind="text: bedCurrentTemp"></span>° Be
|
||||
<div class="span5"></div>
|
||||
<div class="span7">
|
||||
<button class="btn btn-success" data-bind="click: $root.pidHotEndTune, enable: $root.controlViewModel.isOperational() && (!$root.controlViewModel.isPrinting())"
|
||||
title="This will trigger PID auto tuning (M106 Sx; M303 Ex Sx U1; M501)">
|
||||
title="This will trigger PID auto tuning (M106 Sx; M303 Ex Sx U1; M500)">
|
||||
<i class="fas fa-play" style="color:false" data-color="false"></i>  
|
||||
Start PID tunning
|
||||
</button>
|
||||
|
||||
Reference in New Issue
Block a user