Hi, I'm using an ESP32 to exchange data with iPhone over BLE... I changed the name of my device but the iPhone still uses the old name....
I read this thread https://www.b4x.com/android/forum/threads/change-ble-name.69932/#post-444139, I tried restarting the iPhone but it still prints out the old name...
but using Nordic nRF Connect I see the correct name... how it's possible?
Hi, I'm using an ESP32 to exchange data with iPhone over BLE... I changed the name of my device but the iPhone still uses the old name....
I read this thread https://www.b4x.com/android/forum/threads/change-ble-name.69932/#post-444139, I tried restarting the iPhone but it still prints out the old name...
but using Nordic nRF Connect I see the correct name... how it's possible?
Private Sub btManager_DeviceFound (Name As String, Id As String, AdvertisingData As Map, RSSI As Double)
' Log($"Device found: ${Name}"$)
Dim NameAndMac1 As NameAndMac
NameAndMac1.Initialize
NameAndMac1.Mac = Id
NameAndMac1.Name = AdvertisingData.Get("kCBAdvDataLocalName").As(String).Trim
FoundDevices.Add(NameAndMac1)
End Sub
Private Sub btManager_DeviceFound (Name As String, Id As String, AdvertisingData As Map, RSSI As Double)
' Log($"Device found: ${Name}"$)
Dim NameAndMac1 As NameAndMac
NameAndMac1.Initialize
NameAndMac1.Mac = Id
NameAndMac1.Name = AdvertisingData.Get("kCBAdvDataLocalName").As(String).Trim
FoundDevices.Add(NameAndMac1)
End Sub