[Swift] Directly connect to a device via its mac address
Hi all,
I have seen how to connect to a device with its mac address on Android like this :
final BluetoothManager btManager = (BluetoothManager) getSystemService(Context.BLUETOOTH_SERVICE);
final BluetoothDevice remoteDevice = btManager.getAdapter().getRemoteDevice(macAddr);
board = serviceBinder.getMetaWearBoard(remoteDevice);
board.connectAsync().onSuccessTask( ... )
But I'm trying to do the same on iOS (I'm using Swift 3). Is there an equivalent ? I have not seen any detail in the API about connecting directly yo a board.
Thanks a lot
Best
This discussion has been closed.
Comments