Basic Information:
Printer Model: Ender 3 Original (2018)
MCU / Printerboard: MKS min e3 v1.2 klipper
Host / SBC
Slicer: Orca Slicer
klippy.log
klippy.zip (1.1 MB)
Hello,
I need I just installed Klipper and have been messing around with it. I have been able to get BLtouch working and have had my first prints with difficulties. I have managed to print with some manual interventions but I can’t seem to solve the START_PRINT issue I’m having.
I have set the following START_PRINT configuration in my printer.cfg (also see attached)
[gcode_macro START_PRINT]
gcode:
G92 E0 ; Reset Extruder
{% set BED_TEMP = params.BED_TEMP|default(60)|float %}
{% set EXTRUDER_TEMP = params.EXTRUDER_TEMP|default(150)|float %}
M140 S{BED_TEMP} ;Start heating bed
G28 ; Home all axes
M190 S{BED_TEMP} ;Wait for bed to reach temp before proceeding
M104 S{EXTRUDER_TEMP} ;Start heating extruder
BED_MESH_CALIBRATE
G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed
G1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position
M109 S{EXTRUDER_TEMP} ;Wait for extruder to reach temp before proceeding
G1 X0.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line
G1 X0.4 Y200.0 Z0.3 F5000.0 ; Move to side a little
G1 X0.4 Y20 Z0.3 F1500.0 E30 ; Draw the second line
G92 E0 ; Reset Extruder
G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed
G1 X5 Y20 Z0.3 F5000.0 ; Move over to prevent blob squish
My issue is that my nozzle and bed temp from my slicer is not being passed when print starts, the temp remains at 150 for nozzle and 60 for bed.
here is what I would like for it to do.
- Resert exctruder
- get first initial bed layer temp from slicer and set to that temp
- heat nozzle to 150 to prevent ozzing
- once bed temp is reached start bed mesh calibration
- get first layer nozzle and set temp for nozzle
- move nozzle to start of position and then lower so it touched the bed Z0
- wait for the nozzle temp to settle at the first layer temp
- dra first line
- move side a little
- draw second line
- move z up to prevent scratching
- move to prevent blob squish
- begin print
in orca slicer all i have for my start Gcode is :START_PRINT
see pictures below, please help me with a code to get this working. I have been trying for two days.