Cancel Print if Homing Fails
-
Hello, is there a way to cancel a print if any error during homing or mesh bed leveling arises within homeall.g?
For example when
"Error: G30: Probe already triggered at start of probing move"I was not able to find it in Events or Object Model
-
@Nazar
You can check the success of any Gcode command using "result"
0= success, 1= warning, 2 = errorG30 ; home Z by probing the bed if result !=0 abort "Print cancelled due to probe error"