Echo Macro Result in Console
-
So I've happily installed my Duet Wifi & Panel Due and am super happy with how everything is going.
I'm using FSR's to calibrate the bed and noticed there is additional force required to trigger the FSR in the centre of the bed. So I was following the guide, here - https://duet3d.com/wiki/Calibrating_a_delta_printer
I wrote a super simple Macro to go and probe the bed 5 times from a position:
G92 Z0 ;Set Z = 0
G1 Z5 ;Command nozzle up 5mm
G30 S1 ;Probe point
G1 Z5 ;Command nozzle up 5mm
G30 S1 ;Probe point
G1 Z5 ;Command nozzle up 5mm
G30 S1 ;Probe point
G1 Z5 ;Command nozzle up 5mm
G30 S1 ;Probe point
G1 Z5 ;Command nozzle up 5mm
G30 S1 ;Probe point
G1 Z5 ;Return nozzle 5mm above Z = 0Works fine, but I expect the results to be echoed to the console, not sure if there is a M code I am missing tried M111 S1 P3 to enable debug for G-Code, not sure if someone can pint me in the write direction?
-
Did you mean to use G30 S-1 ?
-
That's a thing I totally did mean to do! Right when the print has finished I will adjust.
Will S1 do anything? Looked on reprap wiki and only found S-1 as a value for S on G30
Thank you for the pair programming assistance
-
Yes, worked.
Derped, thanks again