How to pick remote Bluetooth address
Article Metadata
Overview
There are several ways to know BT device address of remote device. Here one of the way to know the remote device address.
TBTSockAddr iOtherDevice;
iAcceptedSocket.RemoteName(iOtherDevice);
TBTDevAddr BDAddress = iOtherDevice.BTAddr();
TBuf<12> readable;
BDAddress.GetReadable( readable);
// readable is human readable address


(no comments yet)