私はAndroid 4.3上のBluetoothデバイスに接続する必要があるアプリケーションを開発しています。BLEデバイスに接続した後のバッテリーレベルの取得方法は?
そして私はBattery_ServiceとBattery_Levelを使用して、バッテリーレベルを取得したいです。
public class BluetoothLeService extends Service {
private static final UUID Battery_Service_UUID = UUID.fromString("0000180F-0000-1000-8000-00805f9b34fb");
private static final UUID Battery_Level_UUID = UUID.fromString("00002a19-0000-1000-8000-00805f9b34fb");
public void getbattery() {
BluetoothGattService batteryService = mBluetoothGatt.getService(Battery_Service_UUID);
if(batteryService == null) {
Log.d(TAG, "Battery service not found!");
return;
}
BluetoothGattCharacteristic batteryLevel = batteryService.getCharacteristic(Battery_Level_UUID);
if(batteryLevel == null) {
Log.d(TAG, "Battery level not found!");
return;
}
mBluetoothGatt.readCharacteristic(batteryLevel);
// What should I do that I can get the battery level ??
Log.d(TAG, "Battery level " + mBluetoothGatt.readCharacteristic(batteryLevel););
}
しかしmBluetoothGatt.readCharacteristic(batteryLevel);
の値は、電池を読むためにどのようにバッテリーレベル値
ではありません????
どのような価値がありますか? –
mBluetoothGatt.readCharacteristic(batteryLevel)の値。 – Wun
申し訳ありませんが、私は助けることができるとは思わない...多分これは:http://developer.samsung.com/forum/board/thread/view.do?boardName=SDK&messageId=240110 –