Ive made a program that search for new devices to connect, when a device is connected and the program searches for more devices, the connected device is acting very slow, is there a way to overcome this? Its not possible to pair the device using passkey.
Using;
devices = client.DiscoverDevices()
ListDevicesFound(devices)
For i As Integer = 0 To devices.Length - 1
If (devices(i).DeviceName.CompareTo("Nintendo RVL-CNT-01") <= 0) Then 'If Found one, add
AddConnectedDevice(devices(i))
The goal is to make a program that autoconnects devices, anytime.