Replies: 1 comment 2 replies
-
Don't confuse C29 with G29, C29 A is for AML (adaptive mesh leveling). |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In the wiki these lines are used in the startcode of cura:
; Heat up
M104 S{material_print_temperature_layer_0} ; Set Extruder temperature
M140 S{material_bed_temperature_layer_0} ; Set Heat Bed temperature
G28 ; Home all axes
G27 ; Park toolhead
M190 S{material_bed_temperature_layer_0} ; Wait for Heat Bed temperature
M109 S{material_print_temperature_layer_0} ; Wait for Extruder temperature
;
; Reset settings
M220 S100 ;Reset Feedrate
M221 S100 ;Reset Flowrate
;
; Ender Custom Start G-code
G92 E0 ; Reset Extruder
G28O ; Home optionally if steppers were shutdown
M420 S1 ; activate leveling
;
; Adaptive Mesh Leveling (AML)
C29 A ; use AML
;
Why are M420 S1 and C29 A used at the same time?
Every time I get an error message in octoprint (conection lost) and the message could not activate bedleveling. Now I blocked M420 S1 with ; ( ;M420 S1 ) in the start code. Then it goes well and I don't get the message anymore and octoprint keeps connection. So I think you have to choose either one. Is this correct? And is it also correct that after the G28 there is a O? ( G28O )
Sorry guys for asking such questions, do try to educate myself. Trust that what is written in the wiki is good and I can copy that into the start code without question. Did try to uncomment 1 of them now though. But would like confirmation that I did that right.
Harrie
Beta Was this translation helpful? Give feedback.
All reactions