I was able to connect this way...
Public Sub Connect
'admin.StartDiscovery
serial.Connect("00:20:12:08:81:BC")
connecting = True
CallSub(Main, "SetState")
End Sub
Private Sub admin_DeviceFound (Name As String, MacAddress As String)
Log($"Device found: ${Name}"$)
If Name = "CONTROLBT" Then'"HC-05" Then
Log("Trying to connect...")
admin.CancelDiscovery
serial.Connect(MacAddress)
End If
End Sub
I communicate directly with the MAC, the problem is that if the device is another, how do I connect, I would have to know the MAC before...