New Duet3D wiki pages: Mesh bed compensation and Delta calibration January 02, 2017 05:38PM |
Registered: 11 years ago Posts: 14,686 |
Re: New Duet3D wiki pages: Mesh bed compensation and Delta calibration January 03, 2017 08:24AM |
Registered: 10 years ago Posts: 893 |
Re: New Duet3D wiki pages: Mesh bed compensation and Delta calibration January 03, 2017 09:34AM |
Registered: 10 years ago Posts: 893 |
; Auto calibration routine M561 ; clear any existing bed transform ;G28 ; home G30 P0 X20 Y20 Z-99999 ; front left G30 P1 X20 Y180 Z-99999 ; back left G30 P2 X180 Y180 Z-99999 ; back right G30 P3 X180 Y20 Z-99999 ; front right G30 P4 X100 Y100 Z-99999 S0 ; centre, and calibrate G1 X10 Y10 Z20 ; go to the front left side, raise & await next move
Re: New Duet3D wiki pages: Mesh bed compensation and Delta calibration January 03, 2017 02:39PM |
Registered: 11 years ago Posts: 14,686 |
Quote
David J
I'm thinking that if I have to do a lot of prints then a macro that runs G29 S0 could be used at the start, then G29 S1 in the bed.g file to use the stored map through the session. Does that sound reasonable?
Re: New Duet3D wiki pages: Mesh bed compensation and Delta calibration January 04, 2017 06:34AM |
Registered: 10 years ago Posts: 893 |
Quote
dc42
Yes, that sounds very reasonable. You could set up a macro that heats to operating temperature and then runs G29 S0 to probe and store the height map. Then in your slicer start gcode, include G29 S1.
.
Re: New Duet3D wiki pages: Mesh bed compensation and Delta calibration January 04, 2017 05:11PM |
Registered: 11 years ago Posts: 14,686 |
Quote
David J
Quote
dc42
Yes, that sounds very reasonable. You could set up a macro that heats to operating temperature and then runs G29 S0 to probe and store the height map. Then in your slicer start gcode, include G29 S1.
.
Just one more question (maybe 2): Do I still need to run G32 in the startup gcode if I'm using mesh bed compensation, or is that replaced by the G29 process?
Re: New Duet3D wiki pages: Mesh bed compensation and Delta calibration January 05, 2017 06:08AM |
Registered: 10 years ago Posts: 893 |