settings and load settings
This commit is contained in:
@@ -69,4 +69,16 @@
|
|||||||
<span class="add-on" title="{{ title }}">
|
<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>
|
<a target="_blank" href="https://marlinfw.org/docs/gcode/{{command}}.html"><i class="fas fa-info-circle"></i></a>
|
||||||
</span>
|
</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 %}
|
{% endmacro %}
|
||||||
@@ -84,8 +84,7 @@
|
|||||||
<div class="input-prepend input-append">
|
<div class="input-prepend input-append">
|
||||||
{{ snipped.linkToMarlin("M92", "Marlin website") }}
|
{{ 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>
|
<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") }}
|
{{ snipped.m500Icon() }}
|
||||||
<span class="add-on" title="Command for saving steps in EEPROM">M500</span>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -34,6 +34,7 @@ Current bed temperature: <span data-bind="text: bedCurrentTemp"></span>° Be
|
|||||||
<span class="add-on" title=""> S</span>
|
<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">
|
<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>
|
<span class="add-on" title=""> U1</span>
|
||||||
|
{{ snipped.m500Icon() }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -42,7 +43,7 @@ Current bed temperature: <span data-bind="text: bedCurrentTemp"></span>° Be
|
|||||||
<div class="span5"></div>
|
<div class="span5"></div>
|
||||||
<div class="span7">
|
<div class="span7">
|
||||||
<button class="btn btn-success" data-bind="click: $root.pidHotEndTune, enable: $root.controlViewModel.isOperational() && (!$root.controlViewModel.isPrinting())"
|
<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>  
|
<i class="fas fa-play" style="color:false" data-color="false"></i>  
|
||||||
Start PID tunning
|
Start PID tunning
|
||||||
</button>
|
</button>
|
||||||
|
|||||||
Reference in New Issue
Block a user