Printer Model: ender 5 Pro
MCU / Printerboard: SKR mini E3 V3
Host / SBC: Rasberry Pi zero 2 / mainsail via kiauh
klippy.log
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
Describe your issue:
…
so been struggling to install and set up Klipper, I finally got everything working and calibrated. went to do my first print (flow cube) and i get through the bed mesh calibration and then i get "Move out of range: 360.000 360.000 10.000 [0.000] followed by “extruder” not hot enough.
It’s called in the macro [gcode_macro PRIME_LINE]
It appears to be a gcode command PURGE a bit later. There is no macro for it. That will be your next issue.
is issued by the macro [gcode_macro _CLIENT_EXTRUDE]
[gcode_macro _CLIENT_EXTRUDE]
description = Extrudes, if the extruder is hot enough
gcode =
{% set client = printer['gcode_macro _CLIENT_VARIABLE']|default({}) %}
{% set use_fw_retract = (client.use_fw_retract|default(false)|lower == 'true') and (printer.firmware_retraction is defined) %}
{% set length = params.LENGTH|default(client.unretract)|default(1.0)|float %}
{% set speed = params.SPEED|default(client.speed_unretract)|default(35) %}
{% set absolute_extrude = printer.gcode_move.absolute_extrude %}
{% if printer.toolhead.extruder != '' %}
{% if printer[printer.toolhead.extruder].can_extrude %}
{% if use_fw_retract %}
{% if length < 0 %}
G10
{% else %}
G11
{% endif %}
{% else %}
M83
G1 E{length} F{(speed|float|abs) * 60}
{% if absolute_extrude %}
M82
{% endif %}
{% endif %}
{% else %}
RESPOND TYPE=echo MSG='{"\"%s\" not hot enough" % printer.toolhead.extruder}'
{% endif %}
{% endif %}
@EddyMI3D thank you for that, I corrected and removed the things causing the issues but still running into issues. its like klipper is trying to run every macro for no reason lol. klippy.log (429.5 KB)
7:41 AM
Unknown command:“M300”
7:41 AM
Unknown command:“LOW_TEMP_CHECK”
7:41 AM
Print already paused
7:41 AM
idle_timeout: Timeout set to 86400.00 s
7:41 AM
Filament Change
7:41 AM
Unknown command:“M300”
7:39 AM
Profile ‘default’ is reserved, please choose another profile name.
7:39 AM
Bed Mesh state has been saved to profile [default]
for the current session. The SAVE_CONFIG command will
update the printer config file and restart the printer.
It looks like your filament runout sensor is triggering. Did you just copy-paste some macros from somewhere? You have macros calling other macros that don’t exist.