ArduinoBLE - bleDevice.address()

Query the Bluetooth® address of the Bluetooth® Low Energy device.

Syntax

bleDevice.address()

Parameters

None

Returns

  • Bluetooth® address of the Bluetooth® Low Energy device (as a String).

Example


  // 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());

    .
  }