Question Z_TILT Z_Speed

Basic Information:

Printer Model: Modded X5SA Z+Z1
MCU / Printerboard: SKIPR
Host / SBC includes by SKIPR
klippy.log not needed

Fill out above information and in all cases attach your klippy.log file (use zip to compress it, if too big). Pasting your printer.cfg is not needed
Be sure to check our “Knowledge Base” Category first. Most relevant items, e.g. error messages, are covered there

Describe your issue:

… No issue. I would like to know how i can setup the z_tilt Z_speed or in which cfg_part it is readout the data. Whlie z_tilt is running hotbed moves up with 5 or more mm/s and slow down with 2mm/s. I’d like the bed to move up slowly. Is there a way to configure this?

best regard Sebastian

Not sure, but you can try:

Z_TILT_ADJUST PROBE_SPEED=<mm/s> LIFT_SPEED=<mm/s>

Thanks for your feedback. But it’s not documented, is it? I’d like to add it to the printer.cfg file. Is that possible?

It is documented indirectly here: G-Codes - Klipper documentation. The documentation is slightly cryptic as [<probe_parameter>=<value>]. I have not tried it, so your mileage may vary.

I think only via calling the actual Z_TILT_ADJUST command.

good morning, this is the documentation:

This command is working, but take no effect on speed.
Z_TILT_ADJUST PROBE_SPEED=50 LIFT_SPEED=2

in printer.cfg the commands are unwished

Unfortunately, I currently have no working printer that would use Z_TILT_ADJUST to verify. Maybe someone here does?

Oh, sorry.
It does rise the bed slowly.

Z_TILT_ADJUST PROBE_SPEED=0.1 LIFT_SPEED=5

(I somewhat got confused and expected it to move the toolhead between points with an PROBE_SPEED)

So, PROBE_SPEED is how slow probe is getting closer to the bed.
Lift speed is how slowly the probe gets far away from the bed.

1 Like

You right, this is working.

does you have commands working in printer.cfg?

[probe]
...
speed: 5.0 # PROBE_SPEED
lift_speed: 5.0

That is what you are asking for?

yes the “probe_speed:” will not be accepted in printer.cfg. The [probe] is in my case bl-touch.

If you take a look at config reference: Configuration reference - Klipper documentation
Specifically to the [probe] section.
You will notice that speed is the speed of Z axis.
Also, you may notice that there is no such parameter as the probe_speed, but just only speed.

So, if you want to specify PROBE_SPEED in the config. You should use just speed in [probe] section.

That in the end, will look like the config example I set above.

So, again, this is the same as PROBE_SPEED=N

[probe]
speed: N

Hope that helps.