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


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


开始扫描使用特定(服务)UUID 进行广告的 Bluetooth® Low Energy 设备。

用法

BLE.scanForUuid(uuid)
BLE.scanForUuid(uuid, withDuplicates)

参数

  • uuid:(服务)UUID(作为 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.scanForUuid("aa10");

  

  BLEDevice peripheral = BLE.available();

  if (peripheral) {
     // ...
  }


相关用法


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