horizontal_move_z can't be less than probe's z_offset

I am not sure where to fix this....I don't see a macro for this. I think this is for bed mesh but not sure
19 Replies
variable-lime
variable-lime•17mo ago
Sorry this didn't help. I can't find a bed mesh section
blacksmithforlife
blacksmithforlife•17mo ago
You don't need to "find it", just put that in your user override section. You can read https://os.ratrig.com/docs/configuration/includes-and-overrides to find out why that works
Includes & Overrides | RatOS
RatOS uses a modular configuration that heavily takes advantage of the config file include and merge logic in Klipper. For this reason, the order of includes and overrides are very important, do not change the order of the configuration unless you know what you're doing.
variable-lime
variable-lime•17mo ago
Yes but I don't know what to add And for the error I am not sure where to change the offset I would also like to change where the bed mesh starts......right now it knocks the klicky probe off
miklschmidt
miklschmidt•17mo ago
https://www.klipper3d.org/Config_Reference.html [bed_mesh] horizontal_move_z: somenumberlargerthanyourzoffset
variable-lime
variable-lime•17mo ago
Got is thx. I am surprised that bed mesh isn't there already
miklschmidt
miklschmidt•17mo ago
Why? Everything is in include files. Including [bed_mesh]. The definition differs depending on what size machine you have, therefore it's defined in the size includes (on v-core 3).
variable-lime
variable-lime•17mo ago
I could not find bed mesh anywhere, I have to add it myself.
miklschmidt
miklschmidt•17mo ago
You don't need to find it anywhere or add it yourself. Read the documentation on overrides. You just enter the section along with the parameters you want to change in your user overrides section. In your case:
[bed_mesh]
horizontal_move_z: 12
[bed_mesh]
horizontal_move_z: 12
For example.
miklschmidt
miklschmidt•17mo ago
Here's the original implementation for a 400 mm v-core 3 (i don't know the size of your printer): https://github.com/Rat-OS/RatOS-configuration/blob/v2.x/printers/v-core-3/400.cfg
GitHub
RatOS-configuration/400.cfg at v2.x · Rat-OS/RatOS-configuration
The RatOS modular klipper configuration. Contribute to Rat-OS/RatOS-configuration development by creating an account on GitHub.
miklschmidt
miklschmidt•17mo ago
It's a bit worrying if the default klicky implementation takes that much print space off your build. It should not be that far into the build plate. Euclid works with the standard bed mesh configuration.
variable-lime
variable-lime•17mo ago
Thanks , I have a 300 and the klicky is 32mm from the nozzle in x and 12 in y, maybe there's a different mount?
miklschmidt
miklschmidt•17mo ago
horizontal_move_z is about the z_offset, not X/Y. To set the probe offset, do: [probe] x_offset: 32 y_offset: 12
variable-lime
variable-lime•17mo ago
Where mine is would this be positive or neg ?
variable-lime
variable-lime•17mo ago
No description
miklschmidt
miklschmidt•17mo ago
negative, both x and y Think of it like this: if you had to travel to the probes position with the nozzle, would you move towards min or towards max. That's your answer to whether it's negative or positive 🙂
variable-lime
variable-lime•17mo ago
Thanks....I will adjust after this 20 hour print lol. I am really liking this RR. 2nd print....20 hours...and looks great
miklschmidt
miklschmidt•17mo ago
chefkiss
variable-lime
variable-lime•17mo ago
No description