Bluetooth não encontrado - conexão Raspberry Pi 3 B + com dispositivos IoS

Bluetooth não encontrado - conexão Raspberry Pi 3 B + com dispositivos IoS

Qual é o procedimento para habilitar o Raspberry Pi 3 B+ para enviar e receber dados com dispositivos IoS?

Desenvolvi uma aplicação que permite ao raspberry bluetooth receber configurações de rede e se configurar (usando Bluez, Pybluez e bluetoothctl). Para dispositivos Android, isso funciona perfeitamente. Mas para dispositivos Apple (IoS), o Bluetooth framboesa nem consegue ser detectado. Alguém pode me ajudar com o procedimento para habilitar o Raspberry Pi 3 B+ para se comunicar com o IoS?

O Bluetooth é iniciado através de um shell script como segue:

bt-adapter --set Powered 1
bt-adapter --set DiscoverableTimeout 0
bt-adapter --set Discoverable 1
bt-adapter --set PairableTimeout 0
bt-adapter --set Pairable 1

O script ptyhon, responsável por lidar com a conexão bluetooth e recepção de informações, é demonstrado abaixo:

if __name__ == "__main__":
    server_sock = bluetooth.BluetoothSocket( bluetooth.RFCOMM  )
    server_sock.bind(('', bluetooth.PORT_ANY))
    server_sock.listen(1)
    port = server_sock.getsockname()[1]
    bluetooth.advertise_service( server_sock, 'Rasp WiFi Configurator', 
                service_id = uuid, service_classes = [uuid, bluetooth.SERIAL_PORT_CLASS], 
                profiles = [bluetooth.SERIAL_PORT_PROFILE])
    print('[INFO] Aguardando conexao bluetooth')
    client_sock, client_info = server_sock.accept()
    print('[INFO] Conexao aceita de {}'.format(client_info))
    client_sock.send(json.dumps(net_info))
    bl_man = threading.Thread(target = bluetooth_manager, args = (server_sock, client_sock,))
    bl_man.start()

informação relacionada