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


Arduino ArduinoBLE - BLE.scanForName()用法及代码示例


开始扫描以特定(本地)名称进行广告的 Bluetooth® Low Energy 设备。

用法

BLE.scanForName(name)
BLE.scanForName(name, withDuplicates)

参数

  • name:(本地)设备名称(作为 String ) 过滤
  • withDuplicates:可选,默认为错误的.如果真的, 多次收到的广告将不会被过滤。

返回

  • 1关于成功,
  • 0失败。

示例


  // begin initialization
  if (!BLE.begin()) {
    Serial.println("starting Bluetooth® Low Energy module failed!");

    while (1);
  }

  Serial.println("BLE Central scan");

  // start scanning for peripheral
  BLE.scanForName("LED");

  

  BLEDevice peripheral = BLE.available();

  if (peripheral) {
     // ...
  }


相关用法


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