- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想订阅多个特征。目前我正在通过在调用每个 writeDescriptor(descriptor) 之间使用计时器来做到这一点(大部分成功)。我想改为使用 onDescriptorWrite() 回调来执行此操作,但它永远不会被调用。
我有以下回电。
private final BluetoothGattCallback mGattCallback = new BluetoothGattCallback() {
@Override
public void onConnectionStateChange(BluetoothGatt gatt, int status, int newState) {
String intentAction;
if (newState == BluetoothProfile.STATE_CONNECTED) {
intentAction = ACTION_GATT_CONNECTED;
mConnectionState = STATE_CONNECTED;
broadcastUpdate(intentAction);
Log.i(TAG, "Connected to GATT server.");
// Attempts to discover services after successful connection.
Log.i(TAG, "Attempting to start service discovery:" +
mBluetoothGatt.discoverServices());
} else if (newState == BluetoothProfile.STATE_DISCONNECTED) {
intentAction = ACTION_GATT_DISCONNECTED;
mConnectionState = STATE_DISCONNECTED;
Log.i(TAG, "Disconnected from GATT server.");
broadcastUpdate(intentAction);
}
}
@Override
public void onServicesDiscovered(BluetoothGatt gatt, int status) {
if (status == BluetoothGatt.GATT_SUCCESS) {
broadcastUpdate(ACTION_GATT_SERVICES_DISCOVERED);
} else {
Log.w(TAG, "onServicesDiscovered received: " + status);
}
}
@Override
public void onCharacteristicRead(BluetoothGatt gatt,
BluetoothGattCharacteristic characteristic,
int status) {
if (status == BluetoothGatt.GATT_SUCCESS) {
broadcastUpdate(ACTION_DATA_AVAILABLE, characteristic);
}
}
@Override
public void onCharacteristicChanged(BluetoothGatt gatt,
BluetoothGattCharacteristic characteristic) {
broadcastUpdate(ACTION_DATA_AVAILABLE, characteristic);
}
@Override
public void onDescriptorWrite(BluetoothGatt gatt, BluetoothGattDescriptor descriptor, int status) {
super.onDescriptorWrite(gatt, descriptor, status);
Log.d("onDescWrite", "yes");
if(characteristics_with_notifications_or_indications.size() > 0) {
characteristics_with_notifications_or_indications.remove(0);
subscribeToCharacteristics();
}
}
};
它在我的连接函数中初始化。
mBluetoothGatt = device.connectGatt(this, false, mGattCallback);
这是我写的描述符
mBluetoothGatt.setCharacteristicNotification(characteristic, enabled);
BluetoothGattDescriptor descriptor = characteristic.getDescriptor(
UUID.fromString(CESGattAttributes.CLIENT_CHARACTERISTIC_CONFIG));
descriptor.setValue(BluetoothGattDescriptor.ENABLE_INDICATION_VALUE);
mBluetoothGatt.writeDescriptor(descriptor);
我想知道我何时通过回调完成 writeDescriptor() 操作,以便我可以订阅另一个特征。然而,即使我已经成功订阅了一个特性并收到了有效数据,onDescriptorWrite() 仍然没有被调用。我怎样才能让 onDescriptorWrite() 被调用?
最佳答案
所以我想通了这个问题。回调函数没有被调用,因为我有一个包含所有具有通知/指示属性的特征的列表。但是,在写入描述符之前,我会检查某些 UUID。好吧,我没有检查其中一个特性,因为我没有使用它,而它恰好是列表中的第一个!所以,我什至都不会写入要调用的回调的描述符。
关于java - onDescriptorWrite() 从未在 BluetoothGattCallback 中调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49641272/
我尝试连接到 MiBand 2 并保持连接,但几秒钟后它失败并重新连接。 我扫描可用设备并显示它们。当我点击我想连接的设备时,它会连接,但几秒钟后就会断开连接。 在连接设备上我这样做: private
我的 device.connectGatt() 只触发 onConnectionStateChage。状态为0,连接建立。我在 4.4 和 5.1 系统上对其进行了测试 - 结果相同。这是我的代码:
我的服务有一个 BluetoothGattCallback 实例 public class MyService extends Service { private BluetoothGattC
我试图弄清楚必须实现的 BluetoothGattCallback 中的处理程序是否在单独的线程上,或者它们是否需要及时返回。换句话说,我是否能够在 onCharacteristicChanged()
我想订阅多个特征。目前我正在通过在调用每个 writeDescriptor(descriptor) 之间使用计时器来做到这一点(大部分成功)。我想改为使用 onDescriptorWrite() 回调
我正在尝试开发一个 BT 应用程序以连接到 BLE 设备并从中读取一些数据。对于设备信息部分,我循环遍历设备的所有特征,读取特征并从 BluetoothGattCallback 的 onCharact
我正在开发一个 Android 应用程序来连接蓝牙模块双模式。 由于模块是双模式的,我遇到了与描述相同的问题 here . 但是我试图做一个解决方法,因为在第一次连接后,回调 onConnection
有人可以检查这段代码的问题吗?我已经实现了一项服务并将 BluetoothDevice 对象传递给它(BluetoothDevice 对象通过 intent 传递没有错误/问题)。然后,在 onSta
当调用 onCharacteristicChanged() 回调时,我观察到一个奇怪的权限相关问题。 我正在编写一个 Android 服务,该服务使用低功耗蓝牙 API 与外围角色的 LE(低功耗)传
我正在研究适用于 Android 的低功耗蓝牙(BLE、蓝牙 4.0)。 我引用了链接中的文档:Bluetooth Low Energy . 它使用 connectGatt() 方法连接到 devic
我正在为一个开源计步器编写一个 BLE 应用程序,到目前为止它运行良好,但有一个恼人的问题:在 BLE 服务的 BluetoothGattCallback void 方法“onConnectionSt
我调用我的蓝牙适配器 mBluetoothAdapter.startDiscovery();,然后返回一个 BluetoothDevices 列表。当我按下其中一个设备时,我会这样做: mBlu
我对安卓不太了解。我正在尝试通过 BLE 发送数据。我的代码如下->。我从网上得到的 https://developer.android.com/guide/topics/connectivity/b
我是一名优秀的程序员,十分优秀!