minor update
This commit is contained in:
parent
8ceb08e917
commit
08b6abb178
3 changed files with 14 additions and 19 deletions
|
@ -18,8 +18,8 @@
|
|||
gcode:
|
||||
{% set x0=250 %}
|
||||
{% set x1=200 %}
|
||||
{% set y0=309 %}
|
||||
{% set z0=1.5 %}
|
||||
{% set y0=309.5 %}
|
||||
{% set z0=1.0 %}
|
||||
{% set z_hop = printer['gcode_macro _USER_VARIABLE'].z_hop|int %}
|
||||
{% if "xyz" in printer.toolhead.homed_axes %}
|
||||
G0 Z{z_hop} F1000 # move Z to travel height
|
||||
|
@ -116,7 +116,6 @@ gcode:
|
|||
[gcode_macro PRINT_START]
|
||||
gcode:
|
||||
{% set BED=params.BED|default(100)|int %}
|
||||
{% set BED10=params.BED|default(100)|int - 10 %}
|
||||
{% set EXTRUDER=params.EXTRUDER|default(250)|int %}
|
||||
{% set BMC=params.BMC|default(0)|int %}
|
||||
{% set SHEET=params.SHEET|default("default")|string %}
|
||||
|
@ -128,8 +127,8 @@ gcode:
|
|||
M117 CONFIGURING
|
||||
M118 CONFIGURING
|
||||
SET_GCODE_OFFSET Z=0.0 # reset z offset
|
||||
M140 S{BED10} # start bed heating to bed-10
|
||||
# M104 S{EXTRUDER} # start extruder heating
|
||||
M140 S{BED} # start bed heating to bed
|
||||
M104 S{EXTRUDER} # start extruder heating
|
||||
G92 E0 # reset extruder
|
||||
G21 # set units to millimeters
|
||||
G90 # use absolute coordinates
|
||||
|
@ -166,15 +165,11 @@ gcode:
|
|||
|
||||
M117 CALIBRATE_Z
|
||||
M118 CALIBRATE_Z
|
||||
G28 Z
|
||||
BRUSHIE
|
||||
CALIBRATE_Z
|
||||
|
||||
G92 E0 # reset extruder
|
||||
NOTIFY_BED BED={BED10}
|
||||
M190 S{BED10} # set and wait for bed-10 temperature
|
||||
|
||||
NOTIFY_EXTRUDER EXTRUDER={EXTRUDER}
|
||||
M104 S{EXTRUDER} # start extruder heating
|
||||
G92 E0 # reset extruder
|
||||
NOTIFY_BED BED={BED}
|
||||
M190 S{BED} # set and wait for actual bed temperature
|
||||
M109 S{EXTRUDER} # set and wait for extruder temperature
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue