mirror of https://github.com/Desuuuu/klipper.git
parent
0d646c4a2e
commit
2529eea491
|
@ -30,8 +30,12 @@ script:
|
||||||
{% set t5uid1 = printer.t5uid1 %}
|
{% set t5uid1 = printer.t5uid1 %}
|
||||||
{% if data == t5uid1.constants.popup_confirmed %}
|
{% if data == t5uid1.constants.popup_confirmed %}
|
||||||
{% if t5uid1.is_printing %}
|
{% if t5uid1.is_printing %}
|
||||||
|
{% if 'virtual_sdcard' in printer and printer.virtual_sdcard.is_active %}
|
||||||
|
CANCEL_PRINT
|
||||||
|
{% else %}
|
||||||
RESPOND TYPE=command MSG=action:cancel
|
RESPOND TYPE=command MSG=action:cancel
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
{% do start_routine("trigger_full_update") %}
|
{% do start_routine("trigger_full_update") %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
run_as_gcode: true
|
run_as_gcode: true
|
||||||
|
@ -44,8 +48,12 @@ script:
|
||||||
{% set t5uid1 = printer.t5uid1 %}
|
{% set t5uid1 = printer.t5uid1 %}
|
||||||
{% if data == t5uid1.constants.popup_confirmed %}
|
{% if data == t5uid1.constants.popup_confirmed %}
|
||||||
{% if t5uid1.is_printing and not printer.pause_resume.is_paused %}
|
{% if t5uid1.is_printing and not printer.pause_resume.is_paused %}
|
||||||
|
{% if 'virtual_sdcard' in printer and printer.virtual_sdcard.is_active %}
|
||||||
|
PAUSE
|
||||||
|
{% else %}
|
||||||
RESPOND TYPE=command MSG=action:pause
|
RESPOND TYPE=command MSG=action:pause
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
{% do start_routine("trigger_full_update") %}
|
{% do start_routine("trigger_full_update") %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
run_as_gcode: true
|
run_as_gcode: true
|
||||||
|
@ -58,8 +66,12 @@ script:
|
||||||
{% set t5uid1 = printer.t5uid1 %}
|
{% set t5uid1 = printer.t5uid1 %}
|
||||||
{% if data == t5uid1.constants.popup_confirmed %}
|
{% if data == t5uid1.constants.popup_confirmed %}
|
||||||
{% if t5uid1.is_printing and printer.pause_resume.is_paused %}
|
{% if t5uid1.is_printing and printer.pause_resume.is_paused %}
|
||||||
|
{% if 'virtual_sdcard' in printer and printer.virtual_sdcard.is_active %}
|
||||||
|
RESUME
|
||||||
|
{% else %}
|
||||||
RESPOND TYPE=command MSG=action:resume
|
RESPOND TYPE=command MSG=action:resume
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
{% do start_routine("trigger_full_update") %}
|
{% do start_routine("trigger_full_update") %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
run_as_gcode: true
|
run_as_gcode: true
|
||||||
|
|
Loading…
Reference in New Issue