Python Bluetooth Broadcaster Listener
The listener of the Broadcaster is used to observe the device's state changes and for discovered/lost Links.
Table of Contents
State Change
Callback for when the Broadcaster's state has changed.
Declaration
state_changed(self, state):
Parameters
state | The state of the Broadcaster. |
Proximity Events
Callback for when a new link has connected to the Broadcaster.
Declaration
connected(self, link):
Parameters
link | The link that successfully connected to the Broadcaster. |
Read More
Callback for when a link has disconnected from the Broadcaster.
Declaration
disconnected(self, link):
Parameters
link | The link that disconnected from the Broadcaster. |