蓝牙经典V2.1和BLE

时间:2016-09-01 12:16:16

标签: android bluetooth bluetooth-lowenergy

我想知道是否有人可以告诉我为什么我的血压监测仪可能与使用Class 1 v2.1蓝牙运行的血压计配对并获得带有API 23的智能手机的值以及使用蓝牙低功耗的代码?

  <uses-feature
    android:name="android.hardware.bluetooth_le"
    android:required="true" />

我读到这些不兼容的Blutooth版本然而它对我有用。对不起我的英语不好

1 个答案:

答案 0 :(得分:0)

因为你有

  <uses-feature
    android:name="android.hardware.bluetooth_le"
    android:required="true" />

这意味着你至少有这一个

<uses-permission android:name="android.permission.BLUETOOTH"/>

这足以使用BT v2.1。如果您的设备是v2.1,那么即使您从清单中移除BLE功能也会有效,因为它不需要它。