device: handle HCI passkey notification event

This commit is contained in:
Abel Lucas
2022-11-11 18:43:35 +00:00
parent eb46f60c87
commit b91d0e24c1
3 changed files with 23 additions and 0 deletions

View File

@@ -2159,6 +2159,15 @@ class Device(CompositeEventEmitter):
HCI_User_Passkey_Request_Negative_Reply_Command(bd_addr=connection.peer_address)
)
# [Classic only]
@host_event_handler
@with_connection_from_address
def on_authentication_user_passkey_notification(self, connection, passkey):
# Ask what the pairing config should be for this connection
pairing_config = self.pairing_config_factory(connection)
asyncio.create_task(pairing_config.delegate.display_number(passkey))
# [Classic only]
@host_event_handler
@try_with_connection_from_address