What's new
VORON Design

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members!

macros problem

Johnrc

New member
Hello and a happy new year.I installed tap and i have print problem.he does all the stuff from the print start,after QGL and others increase temperature related to slicer but not start printing.Can anyone check the gcode and tell me if i need to change something? [gcode_macro G32]
gcode:
SAVE_GCODE_STATE NAME=STATE_G32
G90
G28
QUAD_GANTRY_LEVEL
G28
## Uncomment for for your size printer:
#--------------------------------------------------------------------
## Uncomment for 250mm build
#G0 X125 Y125 Z30 F3600

Uncomment for 300 build
#G0 X150 Y150 Z30 F3600

Uncomment for 350mm build
G0 X175 Y175 Z30 F3600
#--------------------------------------------------------------------
RESTORE_GCODE_STATE NAME=STATE_G32

#--------------------------------------------------------------------

[gcode_macro PRINT_START]
gcode:
{% set BED = params.BED_TEMP|int %}
{% set EXTRUDER = params.EXTRUDER_TEMP|int %}
G0 Z30 ;Move Up
STATUS_HOMING ;Status homeing
G28 ;Home all Axes
PARK_CENTER_REAR ;Park central rear
STATUS_HEATING ;Status heating
M190 S60 ;Set bed temperature and wait
M109 S150 ;Set extruder temperature and wait
STATUS_BUSY ;Status busy
_CQGL ;Quad Gantry Level if not already done
G28 Z ;Home Z axis
STATUS_HEATING ;Status heating
M140 S{BED} ;Set bed temperature
M104 S{EXTRUDER} ;Set extruder temperature
STATUS_CLEANING ;Status cleaning
CLEAN_NOZZLE ;Custom command
STATUS_READY ;Status ready
 
Top