Query the Bluetooth® address of the Bluetooth® Low Energy device.
bleDevice.address()
None
// listen for Bluetooth® Low Energy peripherals to connect:
BLEDevice central = BLE.central();
// if a central is connected to peripheral:
if (central) {
Serial.print("Connected to central: ");
// print the central's MAC address:
Serial.println(central.address());
.
}