@OwenD said in Need some guidance on pausing a macro until I provide input:
M291 R"Wait" P"Check bed height. Press OK to continue" K{"OK","Abort"} S4if (input == 1) echo " cancelled" M99
Thanks so much! I'm using firmware version 3.46 (I'm not aware if 3.5 is stable enough), so I had to change it a little bit. I couldn't go higher than S3 and it wouldn't accept the "input" value. I ended up using the following:
G1 H2 X30 Y30 F6000
M291 R"Wait" P"This is a pause. Press OK to continue" K{"OK","Abort"} S3
G1 H2 X50 Y50 F6000
This works great so far! Thank you again!