Android Question Bluetooth Names equal to Mac Adress

Heppy

Active Member
Licensed User
Longtime User
Hi.

When I discover bluetooth devices, the result of some device name is equal to the Mac, however if I search from the phone Settings displays the names correctly.
Any solution?

Thanks

Sorry for my English
 

Heppy

Active Member
Licensed User
Longtime User
Thanks Erel, but not paired devices.
With the Mac address I have enough, but i wanted to know if you could solve. I have two devices with Android 4.0.4 and works well in one and not in another.
 
Upvote 0

praktikant

Member
Licensed User
Longtime User
Hey Erel,
I am using the tutorial for bluetooth connection.
How i can show in my list, if i find my BT Modul "the MAC Adress and all Information about the BT-Modul"?
I did a Filter for the BT- Modul like:

Sub Admin_DeviceFound (Name As String, MacAddress As String)
Log(Name & ":" & MacAddress)
Dim nm As NameAndMac
nm.Name = Name
nm.Mac = MacAddress
'foundDevices.Add(nm)
Filter (nm)
ProgressDialogShow("Searching for devices (~ device found)...".Replace("~", foundDevices.Size))
End Sub

Sub Filter (nm As NameAndMac)
If nm.Name = "HC-06" Then
foundDevices.Add(nm)
End If
End Sub


-----------
I can only show in my List "HC-06" .... but i want to see the MAC Adress too.
How can i get also the Information about the BT-Modul??

Thanks very much

Best regards

Danijel
 
Upvote 0
Top