0

我让 BleFindMeClient 与 TI Mini Keyfob 一起在 HTC 1X+ 上工作。我正在尝试稍微扩展它以读取电池电量(不注册电池更新)。我可以从 BTool 做到这一点,但我的 Android prog 失败了,我收到了调试消息:

getCharacteristic - 未找到服务数据

这是什么意思?我在哪里可以找到此错误消息和其他错误消息的含义?

显然我可以写特征,因为我可以设置警报。但是关于阅读特性,我没有掌握一些相当基本的东西,但是我找不到示例代码。

有人可以给我一个更好的代码片段,或者在下面发现一些愚蠢的东西吗?

public class BatteryProfileClient extends BleClientProfile {

private static String TAG = "BatteryProfileClient";
static public BleGattID myUuid = new BleGattID("0000180f-0000-1000-8000-00805f9b34fb");
private static final BleGattID BATTERY_CHARACTERISTIC = new BleGattID("00002a19-0000-1000-8000-00805f9b34fb");

private BatteryServiceClient mBatteryServiceClient = new BatteryServiceClient();

public BatteryProfileClient(Context context) {
    super(context, myUuid);

    Log.d(TAG, "Instantiated");

    ArrayList<BleClientService> services = new ArrayList<BleClientService>();
    services.add(mBatteryServiceClient);

    init(services, null);
}


public void batt(BluetoothDevice device) {
    BleCharacteristic battLevelCharacteristic = mBatteryServiceClient.getCharacteristic(device, BATTERY_CHARACTERISTIC);
    byte b[] = battLevelCharacteristic.getValue();
    Log.d(TAG, "battery " + b); 
}

}

4

2 回答 2

0

不知道我是否迟到了,但这应该可以解决您的问题-

public int getbattery(BluetoothGatt mBluetoothGatt) {

    BluetoothGattService batteryService = mBluetoothGatt
            .getService(BATTERY_SERVICE_UUID);
    if (batteryService == null) {
        Log.d(TAG, "Battery service not found!");
        return 0;
    }

    BluetoothGattCharacteristic batteryLevel = batteryService
            .getCharacteristic(BATTERY_LEVEL_UUID);
    if (batteryLevel == null) {
        Log.d(TAG, "Battery level not found!");
        return 0;
    }
    mBluetoothGatt.readCharacteristic(batteryLevel);
    return batteryLevel.getIntValue(BluetoothGattCharacteristic.FORMAT_SINT8, 0);
}
于 2014-02-18T23:17:36.417 回答
0

访问 https://stackoverflow.com/questions/19539535/how-to-get-the-battery-level-after-connect-to-the-ble-device

同样的问题使用 BluetoothGattCallback 进行回调并读取电池值

于 2014-11-17T14:05:06.670 回答