My goal is to forward Bluetooth commands without using a Bluetooth adapter.
I'm attempting to develop a Bluetooth proxy component and have encountered some issues.
I submit Bluetooth advertisement data to an event and then create a scanner that inherits from the BaseHaRemoteScanner class to listen for events and receive advertisement data
The code is roughly as follows.
bluetooth.py
init.py
coordinator.py
I am able to receive advertisement data brought by the event, but after calling the BaseHaRemoteScanner._async_on_advertisement function, the device is still not discoverable on the web
How can I create a scanner that can discover devices?