SET_KINEMATIC_POSITION behaviour

Hey, I wanted to adjust my homing macro so that before homing it would back y a little (so sensorless homing will not detect rubbing of cables etc.)

I made something like that:

{% if ‘y’ in printer.toolhead.homed_axes %}
G1 y-5 F1200
{% else %}
SET_KINEMATIC_POSITION Y=5
G1 y-5 F1200
SET_KINEMATIC_POSITION CLEAR=Y
{% endif %}

But to my supprise I’ve found that setting one axis with SET_KINEMATIC_POSITION also set others. My code will end up cleaning y but x and z will stay. Is it correct behaviour? Or am I doing something wrong?

Hi @gregk

If you run

SET_KINEMATIC_POSITION Y=5

there’s a hidden

X=0 Z=0

default value. You can provide the current positions of those axes to keep their positions.

SET_KINEMATIC_POSITION X={printer.toolhead.position.x} Y=5 Z={printer.toolhead.position.z}
1 Like

Will that work if there are not homed? Because what I want is to avoid setting their position if they are not (or a bunch of ifs to always check their state, store it and clean position) :frowning:

SET_KINEMATIC_POSITION is a low-level “diagnostic” tool that overrides everything. Your printer will believe it is at the position you entered, effectively overriding the coordinates determined by homing the printer.

Be aware that this might lead to damaged hardware.

1 Like

FYI, SET_KINEMATIC_POSITION will not alter the X or Z position if they are not explicitly set - see: G-Codes - Klipper documentation .

If the original question was about the X and Z being considered in a “homed” state after the SET_KINEMATIC_POSITION command, then the CLEAR=XZ parameter can be used to undo that change.

As mentioned above, care should be used when using SET_KINEMATIC_POSITION.

Cheers,
-Kevin

That’s the thing: I use it in few places and this approach will always require checking what axis were homed before, storing it and then cleaning others in the end. I know you can force move on motor directly but with 4 motor Z that would be problematic :frowning:

ps. I know Kinematic position is dangerous, but that’s calculated risk. If I’m in Y=0, which I’m almost never, moving axis to minus will just skip on motors (they are on lower current during homing). But if I’m on Y max and suddenly toolhead will decide that rubbing against cable or chain during x homing is perfect zero point them I’m screwed :frowning: or… same applies if kinematic position resets my other axis :smiley:

ps. I really thought that logical process will be if there is position - restor if it’s unassigned - keep it that way. Then we have kinematic position clear and suddenly works only on specified axis…

What I did is just make the homing command do the homing twice and move away from both edges a little in between.