#Move out of range:
11 messages · Page 1 of 1 (latest)
so how big is your bed
350x350
TEST_SPEED: x_min 20 x_max 331, y_min 20 y_max 341
those are the values inside the test speed cfg. @fickle egret
so no wonder that you printer reports move out of range if you tri to move to X=691 and Y=711.003 😉
To make it short your printer is in relative mode yo need to switch iot to absolute
But I relally wonder as the macro states a G90 ...
But I hate this really stupid and worthless macro and therefor please ask Ellis himself to support you by that nonsense
[homing_override]
axes: xyz
gcode:
STATUS_HOMING
{% set home_all = 'X' not in params and 'Y' not in params and 'Z' not in params %}
G91
SET_KINEMATIC_POSITION Z=0
G1 Z+10 F1200
{% if home_all or 'X' in params or 'Z' in params %}
_HOME_X
{% endif %}
{% if home_all or 'Y' in params or 'Z' in params %}
_HOME_Y
{% endif %}
{% if home_all or 'Z' in params %}
STATUS_HEATING
G90
G1 X118.80 Y355.50
M117 Homing...
STATUS_HOMING
G28 Z
G1 Z10
STATUS_READY
{% endif %}
This was my homing before
[homing_override]
axes: xyz
gcode:
STATUS_HOMING
{% set home_all = 'X' not in params and 'Y' not in params and 'Z' not in params %}
G91
SET_KINEMATIC_POSITION Z=0
G1 Z+10 F1200
{% if home_all or 'X' in params or 'Z' in params %}
_HOME_X
{% endif %}
{% if home_all or 'Y' in params or 'Z' in params %}
_HOME_Y
{% endif %}
{% if home_all or 'Z' in params %}
STATUS_HEATING
G90
G1 X118.80 Y355.50
M117 Homing...
STATUS_HOMING
G28 Z
G1 Z10
STATUS_READY
{% endif %}
G90
This is it now
you see the difference? Because i never only homed x and y i never realized that the position is still relative after only homing x and y