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


Arduino ArduinoBLE - bleDescriptor.readValue()用法及代码示例


读取说明符的当前值。如果说明符在远程设备上,将发送读取请求。

用法

bleDescriptor.readValue(buffer, length)
bleDescriptor.readValue(value)

参数

  • buffer: 将值读入的字节数组
  • length: 缓冲区参数的大小(以字节为单位)
  • value: 将值读入的变量(通过引用)

返回

  • Number of bytes

示例


  byte value = 0;

  /get the value, descriptor is 1 byte so use byte value    
  descriptor.readValue(value);


相关用法


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