Printer Model: ender 3
MCU / Printerboard: 1.1.5
`klippy. klippy(3).log (67.7 KB)
hello…
i’have a problem when i print: terminal repeat with redundancy some error:
Unknown command:“HOME”
18:26:55 // Unknown command:“MOVE”
18:26:55 // Unknown command:“MOVE”
18:26:55 // Unknown command:“WAIT”
18:28:43 // Unknown command:“SET”
19:56:13 // Unknown command:“TURN”
19:56:13 // Unknown command:“MOVE”
19:56:15 // Unknown command:“RAISE”
19:56:15 // Unknown command:“DISABLE”
i don’t understand …
please help me!
thank you
Fill out above information andin all cases attach yourklippy.logfile (use zip to compress it, if too big). Pasting yourprinter.cfgis not needed Be sure to check our “Knowledge Base” Category first. Most relevant items, e.g. error messages, are covered there
thank you for your reply.
i use prusaslicer for generate the gcode but when i launch the print this errors appear in terminal.
i’ve search a solution in www but i have found anything about this errors.
i don’t understand if this errors are in gcode or in other part
Maybe you can slice a tiny model and upload the generated gcode-file here.
Seems that your slicer substitutes some commands or works with not yet defined macros.
[gcode_macro START_PRINT]
gcode =
{% set BED_TEMP = params.BED_TEMP|default(40)|float %}
{% set EXTRUDER_TEMP = params.EXTRUDER_TEMP|default(200)|float %}
Start bed heating
M140 S{BED_TEMP}
Use absolute coordinates
G90
Reset the G-Code Z offset (adjust Z offset if needed)
SET_GCODE_OFFSET Z=-1.150
Home the printer
G28
BED_MESH_PROFILE load=default
Move the nozzle near the bed
G1 Z5 F3000
Move the nozzle very close to the bed
G1 Z0.15 F300
Wait for bed to reach temperature
M190 S{BED_TEMP}
Set and wait for nozzle to reach temperature
M109 S{EXTRUDER_TEMP}
You turned comments in your macro into commands. Replace this by:
[gcode_macro START_PRINT]
gcode =
{% set BED_TEMP = params.BED_TEMP|default(40)|float %}
{% set EXTRUDER_TEMP = params.EXTRUDER_TEMP|default(200)|float %}
# Start bed heating
M140 S{BED_TEMP}
# Use absolute coordinates
G90
# Reset the G-Code Z offset (adjust Z offset if needed)
SET_GCODE_OFFSET Z=-1.150
# Home the printer
G28
BED_MESH_PROFILE load=default
# Move the nozzle near the bed
G1 Z5 F3000
# Move the nozzle very close to the bed
G1 Z0.15 F300
# Wait for bed to reach temperature
M190 S{BED_TEMP}
# Set and wait for nozzle to reach temperature
M109 S{EXTRUDER_TEMP}
Edit:
I would advice against adding a static SET_GCODE_OFFSET Z=-1.150 as this will likely throw off your process.