Advertise the Bluetooth proxy as an iBeacon - #7
Merged
Conversation
Home Assistant retains its requested scan mode while the proxy reconnects. Waiting for a subscription before scanning reports NONE against that request, which makes Home Assistant mark the scanner as broken and ask for a power cycle. Keep the radio scanning whenever the proxy is enabled, but discard reports until a client subscribes so unused advertisements do not fill the delivery queue.
ygelfand
reviewed
Aug 13, 2026
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
ygelfand
reviewed
Aug 13, 2026
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Owner
|
thx this lgtm, will merge and tag a new release in a bit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR makes
echodemit a BLE iBeacon for use in BPS or other triangulation-based tools.The iBeacon uses a custom UUID so
echolocalinstalls are identifiable, and it sets theminorfield of the iBeacon to a value derived from the MAC address of the device.Since advertising and scanning use the same radio, the radio integration/listeners/senders needed enhancements to
The MAC address was repeatedly calculated across a few areas of the
echodcodebase, so I took an opportunity to centralize that so all callsites are consistent.The four new commits
Fixes #6