gpt4 book ai didi

android - 如何在 android BLE 中将 "AFCF"写为特征值?

转载 作者:太空狗 更新时间:2023-10-29 14:16:34 25 4
gpt4 key购买 nike

我正在使用低功耗蓝牙的示例代码,为了写入特性值,我对其进行了一些小改动。下面是我用于写入特征值的代码,它成功写入了 1 字节 (0xFF) 值。

public void writeCharacteristicValue(BluetoothGattCharacteristic characteristic)
{
byte[] value= {(byte) 0xFF};
characteristic.setValue(bytesToHex(value));
boolean status = mBluetoothGatt.writeCharacteristic(characteristic);
}


final protected static char[] hexArray = "0123456789ABCDEF".toCharArray();

public static String bytesToHex(byte[] bytes)
{
char[] hexChars = new char[bytes.length * 2];
int v;
for ( int j = 0; j < bytes.length; j++ )
{
v = bytes[j] & 0xFF;
hexChars[j * 2] = hexArray[v >>> 4];
hexChars[j * 2 + 1] = hexArray[v & 0x0F];
}
return new String(hexChars);
}

上面的代码可以正常写入 1 字节 (0xFF) 值,但我需要写入 2 字节特征值。

当我在 writeCharacteristicValue() 方法中将值更改为 2 字节时,如 byte[] value= {(byte) 0xFF,(byte) 0xFF};然后 onCharacteristicWrite() 回调方法显示异常 “写入操作超过最大长度”。这里可以看到onCharacteristicWrite()回调方法代码

public void onCharacteristicWrite(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic, int status) 
{

if (status == BluetoothGatt.GATT_SUCCESS)
{
broadcastUpdate(ACTION_DATA_WRITE, characteristic);
Log.e("WRITE SUCCESS", "onCharacteristicWrite() - status: " + status + " - UUID: " + characteristic.getUuid());
}
...
...
...
else if (status == BluetoothGatt.GATT_INVALID_ATTRIBUTE_LENGTH)
{
Log.e("WRITE PROB", "A write operation exceeds the maximum length of the attribute");
}
}

现在的问题是我想将 "AFCF" 写为特征值。请在这方面指导我,让我知道我需要在代码中进行哪些具体更改才能写入"AFCF" 值。

我已经花了很多时间来解决这个问题,但到目前为止我的努力没有结果。请帮助我,我将非常感谢你的这种善举。

最佳答案

错误可能是因为您将您的值作为字节数组中的“单个值”。因为,字节数组包含 1 个字节的每个索引值。所以,当你写 1 个字节时它工作完美但是当你尝试写 2 个字节时不要使用上面的方法将十六进制值转换为字节数组,使用另一个。

使用:

public static byte[] hexStringToByteArray(String s) {
int len = s.length();
byte[] data = new byte[len / 2];
for (int i = 0; i < len; i += 2) {
data[i / 2] = (byte) ((Character.digit(s.charAt(i), 16) << 4) + Character
.digit(s.charAt(i + 1), 16));
}
return data;
}

关于android - 如何在 android BLE 中将 "AFCF"写为特征值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21381519/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com