add dynamic laser power toggle and laser warm up time option

pull/450/head
Lex Neva 2019-05-01 20:44:43 -04:00
rodzic 155e1ed165
commit 64fdda07a8
2 zmienionych plików z 3 dodań i 1 usunięć

@ -1 +1 @@
Subproject commit 6d14167c94bb63f4f1536f9467945e2e7beb4357
Subproject commit b205cf5dea49efdecb39df95bd29287fd5c15e5c

Wyświetl plik

@ -1,5 +1,7 @@
{# these parameters are for g-code files (*.txt) #}
<param name="laser_mode" type="boolean" gui-text="{{ _("laser mode") }}" gui-description="{{ _("Laser mode (generate g-code for grbl laser mode)") }}">false</param>
<param name="dynamic_laser_power" type="boolean" gui-text="{{ _("dynamic laser power") }}" gui-description="{{ _("Use Grbl's M4 dynamic laser power mode. Ensures consistent laser cutting power regardless of motor speed. Only for PWM-capable lasers.") }}" min="0.0" max="5.0">true</param>
<param name="laser_warm_up_time" type="float" gui-text="{{ _("laser warm-up time") }}" gui-description="{{ _("When turning on the laser, wait this many seconds for laser to warm up (G4 command)") }}">0.0</param>
<param name="flip_x" type="boolean" gui-text="{{ _("negate X coordinate values") }}" gui-description="{{ _("Negate x coordinates") }}">false</param>
<param name="flip_y" type="boolean" gui-text="{{ _("negate Y coordinate values") }}" gui-description="{{ _("Negate y coordinates") }}">false</param>
<param name="stitch_z_travel" type="float" gui-text="{{ _("Z travel per stitch") }}" gui-description="{{ _("increment z coordinate by this amount per stitch") }}">5.0</param>