writeCharacteristic()返回true,但不调用onCharacteristicWrite()

时间:2015-05-24 04:38:55

标签: android bluetooth bluetooth-lowenergy

我希望读取存储在设备中的特征值,修改该值,然后将其写入设备。出于某种原因,writeCharacteristic()返回true,但内部设备值不会更改,并且不会调用onCharacteristicWrite()。实际上,出于某种原因,如果我尝试写一些东西,它只会被调用,然后在我关闭或重新打开应用程序后立即调用 - 并且不会更改设备值。我已经对这几天进行了调查,这让我发疯了。值得注意的是,手动和通过通知读取特征都可以正常工作。

为什么writeCharacteristic()没有通过,为什么onCharacteristicWrite()会在如此奇怪的时间被调用?

我不确定问题的来源。这可能是一种愚蠢和简单的事情,比如错误地调用writeCharacteristic()(我的实现是基于问题" Working with BLE Android 4.3 how to write characteristics?")。是否有可能忽略请求,因为onCharacteristicRead()某种程度上未完成?

我相信这些链接似乎对说明问题最有帮助,但我自己也无法从中提取任何内容:

作为我的代码的演练,点击onItemClick()事件,启动序列。

int flag = 1;
((MainActivity)getActivity()).BtService.readFlag(flag);

它调用一个函数(在Service中),它验证蓝牙连接并读取特征。

public boolean readFlag(int flag){
    /*... removed code here verifies that the Bluetooth Gatt is available,
    that the Service exists...*/

    BluetoothGattCharacteristic characteristic = Service.getCharacteristic(SEND_FLAGS_CHAR);

    if (characteristic == null) {
        Log.e(TAG, "char not found!");
        return false;
    }

    try {
        // Store intended flag value in SharedPreferences, then read the current one.
        Editor fEditor = sPrefs.edit();
        fEditor.putInt(calibrationSetFlagToSendKey, flag);
        fEditor.commit();

        mConnectedGatt.readCharacteristic(characteristic);

        // Catch response in onCharacteristicRead() callback.
        return true;
    }
    catch (NullPointerException e) {
        Log.w("readCharacteristic", "The characteristic could not be read.");
        return false;
    }
}
调用

onCharacteristicRead(),只调用Handler修改结果并将结果广播回MainActivitytrueFlagValue是一个全局存储在Service中的字节(我知道这种做法不好,但我打算稍后修改它。)

case MSG_SEND_FLAG:
    characteristic = (BluetoothGattCharacteristic) msg.obj;
    if (characteristic.getValue() == null) {
        Log.w(TAG, "Error obtaining current flags");
        return;
    }

    int recentReadDeviceFlag = characteristic.getIntValue(BluetoothGattCharacteristic.FORMAT_UINT8, 0);
    int initialFlag = sPrefs.getInt(calibrationSetFlagToSendKey, 0);
    if (initialFlag == 0) Log.e("Write Debug", "Flag to send is apparently 0");

    /*... Arithmetic modifying flag integer value...*/
    //Desired value is the OR'd value of the value read and value desired
    trueFlagValue = (byte) ((byte) initialFlag | (byte) recentReadDeviceFlag);
    Log.d("Read Debug", "OR'd value is " + trueFlagValue +", sending broadcast");
    Intent fIntent = new Intent("com.example.appwithble.SEND_FLAGS");
    sendBroadcast(fIntent);
    break;

BroadcastReceiver中的MainActivity然后调用Service中的方法,验证要求writeCharacteristic()的方法,就像对readCharacteristic()所做的那样。访问之前设置的trueFlagValue

    else if("com.example.appwithble.SEND_FLAGS".equals(intent.getAction())) {
        BtService.performWriteFlag();
    }

// ...

public boolean performWriteFlag () {
    /*... check Gatt is available and that Service exists...*/
    BluetoothGattCharacteristic characteristic = Service.getCharacteristic(SEND_FLAGS_CHAR);

    if (characteristic == null) {
        Log.e(TAG, "char not found!");
        return false;
    }

    byte[] byteValue = new byte[1];
    byteValue[0] = trueFlagValue;
    characteristic.setValue(byteValue);

    boolean status = mConnectedGatt.writeCharacteristic(characteristic);
    return status;
}

然后应该调用我的onCharacteristicWrite()回调,并且当前只包含一行代码来记录消息。实际上,有时只会调用此应用程序,因为应用程序已关闭或重新打开。存储在我的外围设备特性中的值永远不会改变。

2 个答案:

答案 0 :(得分:0)

我不是专家,但在我的BLE应用中

  • 我首先连接到外围设备
  • 然后与它配对(通过调用createBond()方法),
  • 然后发现服务,
  • 然后发现特征(并将其存储在app变量中)和
  • 最后将值写入特征(通过使用app变量)

你试过吗?

答案 1 :(得分:0)

这样的菜鸟错误。

在我假设写入过程或设备出现问题之前,我没有尝试过编写数据。在查看来自readCharacteristic()的数据类型并询问我发送的设备之后,我开始意识到我发送的数据可能格式错误。

事实证明,即使只需要发送四个不同的标志(可以用两位完成),特性需要格式化为两个字节用于我的特定设备,而不是一个。所以如果我把我的字节数组做成这样的话,它就会起作用。

byte[] byteValue = new byte[2];
byteValue[0] = trueFlagValue;
byteValue[1] = (byte)0;
characteristic.setValue(byteValue);

我希望如果其他人在编写启动但未完成的情况下有一个奇怪的问题,那么这可能是一个类似的问题 - 至少,设备中的某些东西拒绝写入。