Probing/Bed Mesh again after priming nozzle
Sliced a model in SuperSlicer, uploaded and started the job. The machine performs Z-tilt and mesh probing, before heating the nozzle to temperature and starting primeline.
Then it decides to do bring nozzle-temp. back down to 150*C and do the Z-tilt and bed mesh once again!
What am I doing wrong?
16 Replies
like-goldOP•2y ago
Anyone..? 🙏
Probably something you put in the start gcode or you have the wrong gcode flavor
like-goldOP•2y ago
My start Gcode in SuperSlicer looks like this:
START_PRINT EXTRUDER_TEMP=[first_layer_temperature] BED_TEMP=[first_layer_bed_temperature]
Just "copy/paste" from the RatOS-configuration manual.
In the folder "macros.cfg" the start print macro looks like this:
[gcode_macro START_PRINT]
description: Start print procedure, use this in your Slicer.
gcode:
CLEAR_PAUSE
SAVE_GCODE_STATE NAME=start_print_state
# Metric values
G21
# Absolute positioning
G90
# Set extruder to absolute mode
M82
# Home if needed
MAYBE_HOME
M117 Heating bed...
RESPOND MSG="Heating bed..."
# Wait for bed to heat up
M190 S{params.BED_TEMP|default(printer.heater_bed.target, true) }
# Run the customizable "AFTER_HEATING_BED" macro.
_START_PRINT_AFTER_HEATING_BED
# Run the customizable "BED_MESH" macro
_START_PRINT_BED_MESH
# Start heating extruder
M104 S{params.EXTRUDER_TEMP|default(printer.extruder.target, true) }
# Run the customizable "PARK" macro
_START_PRINT_PARK
# Wait for extruder to heat up
M117 Heating Extruder...
RESPOND MSG="Heating Extruder..."
M109 S{params.EXTRUDER_TEMP|default(printer.extruder.target, true) }
# Run the customizable "AFTER_HEATING_EXTRUDER" macro.
_START_PRINT_AFTER_HEATING_EXTRUDER
M117 Printing...
RESPOND MSG="Printing..."
RESTORE_GCODE_STATE NAME=start_print_state
# Set extrusion mode based on user configuration
{% if printer["gcode_macro RatOS"].relative_extrusion|lower == 'true' %}
M83
{% else %}
M82
{% endif %}
G92 E0
I haven't done anything with these settings.
upload your printer.cfg please
like-goldOP•2y ago
Here it is 👍🏼
What slicer are you using?
like-goldOP•2y ago
SuperSlicer
What custom gcode do you have in your filament?
like-goldOP•2y ago
that's your problem, there shouldn't be that stuff in there
like-goldOP•2y ago
Just followed these steps
like-goldOP•2y ago
Do I just delete these and leave those boxes blank as well?
they belong in the "printer settings" tab, not filament tab
like-goldOP•2y ago
...they are there, too... 🤣
which is why it is happening twice...
like-goldOP•2y ago
Holy shite... if I didn't feel stupid enough before...