Hello folks,
Is it possible to interrupt the further execution of the gCode until the user presses the rotary encoder?
Analog M0 (Marlin). Useful for changing filament or somthing.
I don’t know about the encoder button, but if you have PAUSE & RESUME macros, then just adding the word Pause in your Gcode file will execute the pause macro, and then via the web interface, you trigger the resume macro.
PAUSE & RESUME: Yes, I know that. It’s simply more convenient to click on the encoder or on another connected switch. You don’t have to go back and forth.
Macros can’t be interrupted like that. You’d have to split that macro into two with the first half running until the PAUSE, then the second half to continue after the RESUME.