- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
这是我关于 SO 的第一篇文章。
我在 android 5.0.2 上订阅 GATT 通知时遇到一些问题。
我打算做的是将带有 BLE Shield 的 Arduino 连接到我的 Android 手机。我有一个连接到 Arduino 的传感器,我想使用 BLE shield 将数据从 Arduino 发送到我的手机。shield上有个nRF8001是server,我的手机/app是client。
我所做的到目前为止是创建一个扫描 BLE 设备的 Android 应用程序。它可以连接到设备并读取或写入特性。因此,我可以通过调用 gatt.readCharacteristic(mCharacteristic);
“手动”读取特性。这使我能够从 Arduino 获取传感器值。我还使用 nRFGo Studio 创建了一个自定义服务。我知道这部分正在工作,因为我能够使用 Google Play 上提供的 BLE 扫描仪应用程序发现、连接甚至收到有关特性变化的通知。但是在我自己的应用程序中订阅通知是行不通的。嗯,至少订阅有效,但 onCharacteristicChanged(...)
从未被调用。有趣的是,如果我在我的应用程序中订阅该特性,之后使用 BLE 扫描仪应用程序订阅它,突然调用 onCharacteristicChanged(...)
直到我通过 BLE 扫描仪应用程序再次取消订阅。 (我可以通过日志看到这个)
我的android代码如下:关贸总协定回调:
private final BluetoothGattCallback mGattCallback =
new BluetoothGattCallback() {
@Override
public void onConnectionStateChange(BluetoothGatt gatt, int status,
int newState) {
if (newState == BluetoothProfile.STATE_CONNECTED) {
sendBroadcastConnected();
Log.i("BLE", "Connected to GATT server.");
Log.i("BLE", "Attempting to start service discovery:" + bleManager.startServiceDiscovery());
} else if (newState == BluetoothProfile.STATE_DISCONNECTED) {
sendBroadcastDisconnected();
Log.i("BLE", "Disconnected from GATT server.");
}
}
@Override
public void onServicesDiscovered(BluetoothGatt gatt, int status) {
if (status == BluetoothGatt.GATT_SUCCESS) {
Log.w("BLE", "onServicesDiscovered ");
setNotifySensor(gatt);
}
}
private void setNotifySensor(BluetoothGatt gatt) {
BluetoothGattCharacteristic characteristic = gatt.getService(Globals.MPU_SERVICE_UUID).getCharacteristic(Globals.X_ACCEL_CHARACTERISTICS_UUID);
gatt.setCharacteristicNotification(characteristic, true);
BluetoothGattDescriptor desc = characteristic.getDescriptor(Globals.X_ACCEL_DESCRIPTOR_UUID);
Log.i("BLE", "Descriptor is " + desc); // this is not null
desc.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE);
Log.i("BLE", "Descriptor write: " + gatt.writeDescriptor(desc)); // returns true
}
@Override
public void onCharacteristicRead(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic, int status) {
if(Globals.X_ACCEL_CHARACTERISTICS_UUID.equals(characteristic.getUuid())){
Log.w("BLE", "CharacteristicRead - xaccel service uuid: " + characteristic.getService().getUuid());
Log.w("BLE", "CharacteristicRead - xaccel value: " + characteristic.getIntValue(BluetoothGattCharacteristic.FORMAT_UINT8,0));
}
}
@Override
public void onCharacteristicChanged(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic) {
Log.i("BLE", "Received characteristics changed event : "+characteristic.getUuid());
if(Globals.X_ACCEL_CHARACTERISTICS_UUID.equals(characteristic.getUuid())){
Log.i("BLE", "Received new value for xAccel.");
}
}
@Override
public void onCharacteristicWrite(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic, int status) {
}
@Override
public void onDescriptorRead(BluetoothGatt gatt, BluetoothGattDescriptor descriptor, int status) {
}
@Override
public void onDescriptorWrite(BluetoothGatt gatt, BluetoothGattDescriptor descriptor, int status) {
}
};
这就是我连接到 GATT 的方式:
bt_device = createBluetoothDevice(DEVICE_ADRESS);
BluetoothGatt mBluetoothGatt = bt_device.connectGatt(context, false, mGattCallback);
所有这些代码都在后台服务中运行,该服务在选择 BLE 设备后启动。
我尝试的是实现 Google Dev API 指南中演示的内容,我还尝试了 this solution (没有成功)。在 Google 上搜索、阅读已经在 SO 上提出的问题(例如 this one)或查看 Nordic Developer Zone 在这种情况下都没有太大帮助。
最后,我的问题是:我做错了什么?我错过了什么吗?我就是想不通,这两天让我发疯了。我不知道还能在哪里找到解决方案,所以我希望你能帮助我..
编辑全局类:
// BLE Services
public static final UUID MPU_SERVICE_UUID = UUID.fromString("3f540001-1ee0-4245-a7ef-35885ccae141");
// BLE Characteristics
public static final UUID X_ACCEL_CHARACTERISTICS_UUID = UUID.fromString("3f540002-1ee0-4245-a7ef-35885ccae141");
// BLE Descriptors
public static final UUID X_ACCEL_DESCRIPTOR_UUID = UUID.fromString("3f542902-1ee0-4245-a7ef-35885ccae141");
编辑我在 BLE 扫描器中所做的:我只是扫描 BLE 设备。它找到我的设备,点击它后,它会显示我在 Arduino 开发板上设置的所有服务。选择一项服务后,它会显示我为此服务指定的所有特征。当我点击一个特性时,它会显示它的 UUID 和它的服务的 UUID。此外,BLE Scanner 应用程序允许我订阅通知或读取特征。当我订阅时,值会不断更新。
最佳答案
所以,我终于弄清楚了我的错误:)正如您在上面看到的,我使用的 UUID 与我的描述符的基数相同(从 3f54XXXX-....
开始)
我将其更改为 public static final UUID X_ACCEL_DESCRIPTOR_UUID = UUID.fromString("00002902-0000-1000-8000-00805f9b34fb");
,现在一切正常。
我以前没有这样做,因为我认为每个特征都应该有一个描述符。但实际上,根据Client Characteristic Configuration ......
[...] descriptor shall be persistent across connections for bonded devices. The Client Characteristic Configuration descriptor is unique for each client.
所以我检查了 RedBearLab Android App 示例,发现描述符的 UUID 等于其他 SO 答案上发布的 UUID。
这也解释了为什么我的应用程序在我在 BLE 扫描器应用程序中启用它们后收到通知:由于描述符应在绑定(bind)设备的连接中持久存在,BLE 扫描器应用程序也使用此 UUID 作为描述符,从而启用通知客户(=我的手机)。
关于android - 订阅通知后未调用 BLE GATT onCharacteristicChanged,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30088818/
我有一个问题,我不知道如何解决。 我可以成功连接到设备,注册以获取有关特性的通知,并且可以在远程设备上的值更改后成功收到通知。 我遇到的问题是,当连续通知到达时,第二个通知并不总是被服务甚至操作系统捕
我正在我的应用程序中使用 BLE 连接。我有一个用于蓝牙功能的类,我正在传递来自不同 fragment 类的命令以写入任何值。 因此根据场景,在 fragment 内,单击按钮将向蓝牙类发送写入命令。
在我的应用程序中,我使用 setCharacteristicNotification 为特征启用通知。在日志猫中,我收到通知 enable true 也在 onDescriptorWrite 回调上获
我正在尝试编写一个 Android 应用程序来模仿我编写的 iOS 应用程序中已经存在的功能。我正在连接 2 个不同的 BLE 设备: 血压袖带 体重秤 在 iOS 上,我的两台设备都运行良好并报告数
我的应用程序执行以下操作: 它使用 onDescriptorWrite 发送命令到 BT 设备。 BT 设备一收到此命令 它开始传输数据到安卓手机。 安卓的onCharacteristicChange
我有一个医疗设备(名为 SnoreCoach),我创建了一个 Android 应用程序并与该设备进行低功耗蓝牙连接。一切(连接到设备、将数据写入特征等)都工作正常,除了 OnCharacteristi
我等待 onCharacteristicChanged() 回调通过 BLE 接收数据。但是,如果 BluetoothDevice 一次发送太多 20 字节的数据包,我最多会收到 10 条通知,而不是
我需要 Ble 的一些响应数据。当我在 ble 上写东西时,我需要从 Ble 读取响应数据。我能够成功启用和禁用我的 ble 设备,但只缺少来自 ble 的响应数据。我还需要将十进制时间转换为整数十六
这是我关于 SO 的第一篇文章。 我在 android 5.0.2 上订阅 GATT 通知时遇到一些问题。 我打算做的是将带有 BLE Shield 的 Arduino 连接到我的 Android 手
我已连接血压设备并在 onServiceDicovered 中设置通知。 我为每个特性设置了通知。但是 onCharacteristicChanged 仍然没有被调用。 public final st
我正在尝试连接蓝牙 LE 温度计。连接到设备工作正常。唯一让我挂断的部分是 gattCallBack 和 onCharacteristicChanged/Read。 'setNotification'
我正试图在退出我的应用程序时断开特征通知。以下是我在 exitCleanup() 函数中的做法: if (btGatt != null && mWriteChar != null) { bool
我有一个 Android 应用程序,我从中接收 BLE 数据(通过通知每 62 毫秒)。该应用程序可以通过 BufferedWriter 将数据保存到文件中。在每个 onCharacteristicC
我是一名优秀的程序员,十分优秀!