Salandora / OctoPrint-SystemCommandEditor

This plugin makes System Commands editable through the OctoPrint WebUI
GNU Affero General Public License v3.0
9 stars 10 forks source link

Print Job does not end #26

Open johnReeferVermont opened 1 year ago

johnReeferVermont commented 1 year ago

Hello. I love this plugin :)

I have the below code in place to heat nozzle and allow me to clean the nozzle and then I have a cool nozzle button that is supposed to end everything. However, the display tells me that there is still a print job in place and even when I select stop job, it does not. Is there a code I can add to completely end a job.

Heat Nozzle Button Code G28 ; Home All M82 ;absolute extrusion mode G1 X125 Y150 F2500.0; Move X and Y G1 Z120 F100 M104 S235.0 M109 S235.0 G92 E0 ;Reset Extruder G1 E50 F500 ; For Bondtech G92 E0 ;Reset Extruder G1 E-2 F2400 ; Retract a little bit M84 ; Turn off the stepper motors M300 S300 P1000 ; Play a 300Hz beep sound for 3000 millisecond

Cool Nozzle Button Code G90 ;Absolute positioning G28 M104 S0 ;Turn-off hotend M106 S0 ;Turn-off fan M84 X Y E Z ;Disable all steppers

Thanks