installed Voron tap this week.
Everything works properly, only the printing itself does not work together.
With every print it reports that the "extruder temperature is too low".
After leveling at 150 celcius
Put in another code.
And it reports every time "Error evaluating 'gcode_macro PRINT_START:gcode': jinja2.exceptions.UndefinedError: 'dict object' has no attribute 'BED'
code from cura:
What the correct code is and where the error is.
Everything works properly, only the printing itself does not work together.
With every print it reports that the "extruder temperature is too low".
After leveling at 150 celcius
Put in another code.
#--------------------------------------------------------------------------------------------------------
#--- read values provided by slicer
{% set temp_bed = params.BED|int %} #*** Required. BED value must be provided by slicer
{% set temp_hotend = params.HOTEND|int %} #*** Required. HOTEND value must be provided by slicer
#
#--------------------------------------------------------------------------------------------------------
#--- do the usual stuff
SFS_ENABLE
SET_FAN_SPEED FAN=Nevermore SPEED=0.8
SET_PIN PIN=caselight VALUE=.5
STATUS_HEATING
M190 S{temp_bed} #*** Set bed temp and wait
M109 S150 #*** Heat nozzle to 150 and wait
STATUS_LEVELING
G32 #*** Home all, probe bed, level the gantry and such
G90 #*** Absolute positioning - don't remove
STATUS_HEATING
BED_MESH_PROFILE LOAD=default #*** Load mesh
#--------------------------------------------------------------------------------------------------------
#--- set hotend to the temp provided by the slicer
M109 S{temp_hotend} #*** Set extruder temp and wait
CLEAN_NOZZLE
STATUS_CLEANING
STATUS_READY
SET_NOZZLE_LEDS_ON
And it reports every time "Error evaluating 'gcode_macro PRINT_START:gcode': jinja2.exceptions.UndefinedError: 'dict object' has no attribute 'BED'
code from cura:
BED={material_bed_temperature_layer_0} HOTEND={material_print_temperature_layer_0}
What the correct code is and where the error is.