Easier Z Offset control
-
@krohm-koala I use a macro to set the G31 stuff. It allows you to change it without resclicing or rebooting.
-
Such a good idea ! Thanks for the reply !
-
I use this macro which is really cool:
T0
M291 P"Press ""OK"" if you would you like to calibrate the Z-offset for this Tool Cartridge." R"Calibrate Z-Offset" S3
M291 P"Make sure your nozzle is free of debris. Press ""Cancel"" if you need to stop and clean the nozzle." R"Calibrate Z-Offset" S3
M291 P"Homing, please wait..." R"Calibrate Z-Offset" S1
M98 P/sys/homeall.g
M208 S1 Z-2 ; allow movement below Z0
G1 X100 Y10 Z8 F2000 ; move to center of bed
M558 P0
G30 S-2
M500 ; save results
M501 ; load new data
M208 S1 Z0 ; disallow movement below Z0
G1 Z25 ; drop build plate
M291 P"Z-offset calibration complete! " R"Calibrate Z-Offset" S1 T3 -
@e1ixir Wouldn't you need to use M500 P31 to save the trigger height?
https://duet3d.dozuki.com/Wiki/Gcode#Section_M500_Store_parameters
-
No, the macro doesn't use G31
-
Thanks I'll try this macro but I'm on the @Phaedrux side, now it need the M500 P31 to save the trigger height (according to the dozuki)
-
See here: https://forum.duet3d.com/topic/8645/solved-calibrate-z-probe-macro/12
My english is not so good, but I think the explanation can be found in this message (thanks to its author):
"jckray 18 janv. 2019 à 08:30
...this script measures and saves a G10 tool offset, which is separate from the z-probe trigger hight. I went this route, because, as I understand it, measuring the trigger height just reports the value and requires a manual G31 entry with the new trigger hight in order for M500 P31 to save the new trigger height. For an individual printer without any kind of tool changing it is probably better to just measure the trigger height and manually update the value in config. For my application which is for a consumer product and has to do with tool changing it actually makes more sense to use the tool offset to and have a static z-probe trigger height." -
@e1ixir Bon je sais que beaucoup ne comprendront pas, mais, du coup, tu save comment ton offset ? Obligé de modifier dans le config.g ? Parce qu'il y a rien dans le macro qui à l'air de save ça ._.
-
Mais si, tu as un M500! L'offset est sauvegardé dans config.overrides.g, sous la forme d'une commande G10. Bref, essaye, tu verras, ca marche très bien... Une autre solution aurait été d'utiliser un G31 S-3, je pense.
-
@e1ixir said in Easier Z Offset control:
L'offset est sauvegardé dans config.overrides.g, sous la forme d'une commande G10.
Mais bien sûr!
-
J'ai essayé, ça à l'air d'aller pas trop mal, même si j'ai essayé plusieurs fois (avec un print entre 2) et ma buse se crash dans le bed des fois, j'ai pas trop compris mais à voir, j'ai surement merdé quelque part x) D'un côté j'pense que je l'adapterais pour enregistrer un G31, j'préfère rester avec un G31 même si avec le G10 ça à l'air d'aller pas trop mal.