Find Bluetooth Device by Name

  • Share this:

Code introduction


The function is used to find a specific named device in Bluetooth devices and return its Bluetooth address. If not found, it returns None.


Technology Stack : PyBluez (Bluetooth library)

Code Type : Function

Code Difficulty : Intermediate


                
                    
def find_bluetooth_device(device_name):
    import bluetooth
    nearby_devices = bluetooth.discover_devices(lookup_names=True)
    for address, name in nearby_devices:
        if name == device_name:
            return address
    return None