如何从Polar H7心率监测器读取心率数据?我正在为Android使用evothings phonegap插件。我能够读取服务数据,其中包括特征列表,处理值。但是如何读取心率值?

// ..
{
    "type": 0,
    "uuid": "0000180d-0000-1000-8000-00805f9b34fb",
    "handle": 3,
    "characteristics": [
      {
        "permissions": 0,
        "writeType": 2,
        "properties": 16,
        "uuid": "00002a37-0000-1000-8000-00805f9b34fb",
        "handle": 13,
        "descriptors": [
          {
            "permissions": 0,
            "uuid": "00002902-0000-1000-8000-00805f9b34fb",
            "handle": 24
          }
        ]
      },
      {
        "permissions": 0,
        "writeType": 2,
        "properties": 2,
        "uuid": "00002a38-0000-1000-8000-00805f9b34fb",
        "handle": 14,
        "descriptors": [

        ]
      }
    ]
  }, // ...


调用evothings.ble.enableNotification(1, 13, ..)表示null

最佳答案

看起来Polar H7遵循心率配置文件规范。有趣的是heart_rate_measurement特性,它具有UUID 2a37,可以在列表中看到。

调用evothings.ble.enableNotification只是您需要做的一半。您还必须调用evothings.ble.writeDescriptor(1, 24, new Uint8Array([1,0]), ...)才能真正启动通知。

如果通知失败,则可以使用readDescriptor()进行轮询。

09-13 08:20