-
-
Notifications
You must be signed in to change notification settings - Fork 235
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support beacon_klipper version >= 2.0.0, a.k.a Beacon Contact #637
base: main
Are you sure you want to change the base?
Conversation
…plus some whitespace clean-up
Pretty sure this isn’t really neaded, but added just in case.
* Added macro include for activation and deactivation gcode * Added macro include for homing hooks that re-implement portions of homing_override
Macros re-purposed from vorontap because the nozzle will be touching the bed surface
Pre and post homing hooks are being used to re-implement large portions of functionality from homing_override. * Current adjustments for sensorless homing * Endstop backoffs * Status lighting * Accel adjustments
Keeps the LEDs from quickly cyling between X and Y homing.
Variable can be used for conditional actions based on the active color value.
beacon_klipper has undocumented hook features that are called before or after homing either the x or y axis
* Fix incorrect command * Add macro variable to STATUS_LEDS Variable can be used for conditional actions based on the active color value. * Present value as a string literal * Case and quotes adjustments * Change quote type * More quotes * Discard use of delayed_gcode beacon_klipper has undocumented hook features that are called before or after homing either the x or y axis * Add xy hooks * Add activation macro * Add contact macro * Case change * Add recommend homing configuration * Revert status_leds
* Fix incorrect command * Add macro variable to STATUS_LEDS Variable can be used for conditional actions based on the active color value. * Present value as a string literal * Case and quotes adjustments * Change quote type * More quotes * Discard use of delayed_gcode beacon_klipper has undocumented hook features that are called before or after homing either the x or y axis * Add xy hooks * Add activation macro * Add contact macro * Case change * Add recommend homing configuration * Revert status_leds * Add fast QGL/Z-Tilt macros * Chomp whitespace
Add hardware check
* Add calibration to G28 on probe activation Guarantees some calibration occurs when home_method is set to proximity, and home_autocalibrate is set to none. * Track probe activation status Trying to avoid the probing hooks changing status LEDs when they shouldn’t
I tried your implementation and there are some default values that are not included that causes an error "Option 'home_method' is not valid in section 'beacon'". This is likely due to home_xy_position not being defined by some kind of defaults. Probably best to retrieve the zero reference position/bed center like the homing_override.cfg does and assume that as the home_xy_position. |
I started working on this PR after I already had Beacon more or less up and running, so you're right, I already had Unfortunately, the value needs to be defined outside of a gcode macro, so I can't use the same trick that I'm not quite sure what the optimal solution is. I can add the documented recommended defaults into Maybe that, plus adding a commented beacon block to the user_templates overrides.cfg, basically some way of signaling that for contact, a user is probably going to want to have some sort of config override setup. Just to share, this is my beacon block present in
|
If home_xy_position is unset, Klipper will throw an `Option 'home_method' is not valid` error message. Adding it, plus other defaults from the Beacon Contact docs.
* Add calibration to G28 on probe activation Guarantees some calibration occurs when home_method is set to proximity, and home_autocalibrate is set to none. * Track probe activation status Trying to avoid the probing hooks changing status LEDs when they shouldn’t * Calibrate after tilt * Update model prior to tilt * Fix inconsistent indents
📌 This pull request has been marked as stale because it has not had activity in the past 30 days. |
Hey @crkochan, any update on this? I'd love to see support for this added. |
None from my side. I've been running a series of post-kit-build prints for some new parts and future upgrades using my fork branch, and the pieces have been turning out just fine on my V2.4. It may not be up to snuff in terms of being merged into mainline because of the need for users to add Contact-specific settings that are perhaps unique to their machine, or class of printer, into their overrides file in order to avoid the potential for cryptic and/or misleading error messages on Klipper start that would come from the Beacon module. I'm happy to implement any feedback from the maintainers. |
Hey, @crkochan I have been using your setup to run beacon contact with no problems. All is working as intended.
So, second and third are redundant ? |
Yes. Per the Beacon docs, QGL/z tilt adjust and bed mesh should be book-ended by calibrations. I'm not sure where the extra calibrations are coming from in your case. |
My initial take on fixing #636.
Beacon Contact introduced code in their BeaconHomingHelper class that specifically balks when
[homing_override]
is present in the Klipper config.My attempt at working around this was to...
beacon_contact.cfg
in the hardware probes folderbeacon_contact
asvariable_probe_type_enabled
to be used by future g-code conditionalsmachine.cfg
so thathoming_override.cfg
is not always includedhoming_override.cfg
include intogeneric_probe.cfg
base macro so that every other probe can still get itThere are still a couple more changes I want to make based on the Beacon documentation that are centered on the start_print macro, but I'm opening this as a draft PR so that I can also include any feedback, since this is my first contribution.