当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Arduino ArduinoBLE - bleDevice.address()用法及代码示例


查询 Bluetooth® Low Energy 设备的 Bluetooth® 地址。

用法

bleDevice.address()

参数

None

返回

  • Bluetooth® address蓝牙® 低功耗设备(作为字符串)。

示例


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

    .
  }


相关用法


注:本文由纯净天空筛选整理自arduino.cc大神的英文原创作品 ArduinoBLE - bleDevice.address()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。