Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update macros.cfg for buggy AUTO_BED_LEVEL #229

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions printer_configs/macros.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,11 @@ gcode:
# bed heating
G90 ; absolute coordinates
G1 Z10 F1800 ; raise bed

M140 S{bed_temp - 2} ; set bed temp just below target (incase bed is already HOTTER)
# wait for bed to reach temp if HOTTER, don't wait for stabilization
TEMPERATURE_WAIT SENSOR=heater_bed MAXIMUM={bed_temp}

M140 S{bed_temp} ; set bed temp
# wait for bed to reach temp, don't wait for stabilization
TEMPERATURE_WAIT SENSOR=heater_bed MINIMUM={bed_temp}
Expand Down Expand Up @@ -146,14 +151,15 @@ gcode:
# wait for nozzle cooldown to 120°
M106 S255 ; turn on fan
M104 S0 ; turn of noozle heating
TEMPERATURE_WAIT SENSOR=extruder MAXIMUM=120
TEMPERATURE_WAIT SENSOR=extruder MAXIMUM=152
M104 S150 ; turn nozzle heating on to 150
M107 ; turn off fan

# move to remove cold filament
G1 X10 F300

# start the calibration
BED_MESH_CALIBRATE PROFILE={profile}
BED_MESH_CALIBRATE PROFILE="{profile}"

[gcode_macro BED_MESH_CALIBRATE]
rename_existing: _BED_MESH_CALIBRATE_ORIG
Expand Down