Switching from Inductive probe to Beacon probe?

I am switching over from an inductive probe and couldn't fine a step x step guide anywhere yet. 1. When installing Beacon probe do I need to comment this line out or make any changes to it? include RatOS /printers/v-core-3 input-shaper.cfg 2. Do I need to make any changes to the following? variable_nozzle_priming: "primeblob" Park in the back when waiting for the extruder to heat up set to "front" to park in the front, or "center" to park in the center. 3. Do I need to make any changes to this. ADXL345 resonance testing configuration [resonance_tester] probe_points: 100,100,20 # 200mm printer 150,150,20 # 300mm printer 200,200,20 # 400mm printer 250,250,20 # 500mm printer Anything else I need to change or check before switching over? Many thanks in advance.
32 Replies
MFBS
MFBSOPβ€’6mo ago
Also do I need to set the Z probe offset and if so are there instructions on where and how to do this with Beacon or is it done just the same way it is done for an inductive probe?
MFBS
MFBSOPβ€’6mo ago
This is my current printer.cfg
miklschmidt
miklschmidtβ€’6mo ago
No changes to any of the listed options You should change bed mesh min/ max and z_tilt point to fit your particular build (i’m assuming you’re running one of your many toolhead thingies). Besides that it’s just an include and BEACON_CALIBRATE. RevH accelerometer requires manual configuration in 2.0 (supported in 2.1, not released yet). [resonance_tester] accel_chip: beacon
MFBS
MFBSOPβ€’6mo ago
Many thanks.
MFBS
MFBSOPβ€’6mo ago
@miklschmidt Is it possible there is an error in the default RatOS Y offset for the coil location on the Beacon?
No description
No description
No description
miklschmidt
miklschmidtβ€’6mo ago
Y offset is from the center of the nozzle to the center of the beacon coil. the current config is for the fabreeko_speedy mount. Which may have been modified since
MFBS
MFBSOPβ€’6mo ago
I think you have that set as 27 and I think it should be 22.3 for standard V-Core 4 print head?
miklschmidt
miklschmidtβ€’6mo ago
There's no official support released for the v-core 4 What code are you looking at
MFBS
MFBSOPβ€’6mo ago
OK I just took the measurments from the CAD and assumed the Y offset value was for the VC4 tool head. I guess I should never make assumptions.
miklschmidt
miklschmidtβ€’6mo ago
There's no V-Core 4 in RatOS 2.0 πŸ˜„
MFBS
MFBSOPβ€’6mo ago
duh
miklschmidt
miklschmidtβ€’6mo ago
But i believe the cfg has stayed the same since it was originally implemented, there was no official mount and i did not want to break existing setups.
MFBS
MFBSOPβ€’6mo ago
My bad
miklschmidt
miklschmidtβ€’6mo ago
That's actually also the case for 2.1. There's gonna be instructions in 2.1 to manually calibrate your probe offsets because they're quite important for a lot of other sections. I haven't decided exactly what to do yet, so it's probably gonna be docs for now. I want to automate that whole thing away because it's awful πŸ˜…
MFBS
MFBSOPβ€’6mo ago
Really looking forward to 2.1. Seems like a massive amount of work must have gone into it!
miklschmidt
miklschmidtβ€’6mo ago
I'll say! πŸ₯΅
MFBS
MFBSOPβ€’6mo ago
RatOS is what is missing from printers such as the Magneto. It woud solve so many of their issues
miklschmidt
miklschmidtβ€’6mo ago
Yeah i think it would help most printers, and it should be much easier than before to add new user contributed ones in 2.1 πŸ™‚ The only real requirement is that the machine uses supported hardware (otherwise that would need to be added too) 44 supported boards now though! πŸ™‚
MFBS
MFBSOPβ€’6mo ago
Should I have this in my overides section still.
No description
miklschmidt
miklschmidtβ€’6mo ago
Yes if you want adaptive meshing, however in 2.0 it disables the prime blob for the beacon (it wasn't possible to read out probe results earlier, it has been added since). Adpative mesh will be default in 2.1, and has support for priming with the beacon as well.
MFBS
MFBSOPβ€’6mo ago
Excellent the prine blob is a great way of cleaning the nozzle.
miklschmidt
miklschmidtβ€’6mo ago
Yeah i think so too! And it's been made faster and shorter in 2.1 πŸ™‚ It also dynamically adapts to nozzle sizes (one of the reasons the configurator asks you about your nozzle now)
MFBS
MFBSOPβ€’6mo ago
@miklschmidt What I don't see yet is where I set the Z offset for the Beacon. Do I do it in the same way I did it with the inductive probe and still leave this in my config?
No description
miklschmidt
miklschmidtβ€’6mo ago
You don't, the z_offset for beacon is baked into the calibration model. You run BEACON_CALIBRATE and that's it. so get rid of the z_offset and run BEACON_CALIBRATE. Make sure z_offset and [probe] is entirely gone, also from the klipper section.
MFBS
MFBSOPβ€’6mo ago
Thannks
MFBS
MFBSOPβ€’6mo ago
@miklschmidt Hmm not sure what I am doing wrong yet. I have adjusted my Z tilt positions and done Beacon_Calibrate and everything seems to work OK until I start a print and then I get this error...
No description
MFBS
MFBSOPβ€’6mo ago
Bed mes looks OK I think?
No description
MFBS
MFBSOPβ€’6mo ago
Sorted, now I understand what you meant about changing the bed mesh. I had to change mesh_min to 30,30 as my Y offset is 27mm on the print head. Many thanks for your help. Now I just need to have a way to store different Z off sets for my different beds and also for different filaments. Some filaments like TPU I don't squish on the bed so much.
miklschmidt
miklschmidtβ€’6mo ago
i like to keep filament specific offsets in my filament profiles, SET_GCODE_OFFSET with a += adjustment so it's relative to whatever is already set. You can also do it with an absolute offset, depends on your workflow.
MFBS
MFBSOPβ€’6mo ago
Nice idea! Do you have an example of the script I can cut and paste into my filament profiles and adjust.
miklschmidt
miklschmidtβ€’6mo ago
SET_GCODE_OFFSET Z_ADJUST=0.01 That moves the nozzle 0.01mm further away from the bed on the next move. If you want to set it, and not adjust it, use Z instead of Z_ADJUST.
MFBS
MFBSOPβ€’6mo ago
Many thanks.
Want results from more Discord servers?
Add your server