Encontramos la respuesta a este contratiempo, al menos eso pensamos. Si sigues con inquietudes dínoslo, que sin dudarlo te ayudaremos
Ejemplo: módulo bleutooth python3
#Simple bluetooth connectimport bluetooth
target_name ="My Phone"
target_address =None
nearby_devices = bluetooth.discover_devices()for bdaddr in nearby_devices:if target_name == bluetooth.lookup_name( bdaddr ):
target_address = bdaddr
breakif target_address isnotNone:print("found target bluetooth device with address "), target_address
else:print("could not find target bluetooth device nearby")
valoraciones y comentarios
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)