我拥有Polar H10胸带,以低能量蓝牙运作,提供心率和心率变异。
我想用Android应用读出这些值。由于official BLE tutorial的帮助,我能够连接到设备。现在的问题是从设备读出心率和心率变异值。每当设备上有新值时,我想读出这个值(并且至少每隔一个新值)。
我找到了以下代码:
private static double extractHeartRate(
BluetoothGattCharacteristic characteristic) {
int flag = characteristic.getProperties();
Log.d(TAG, "Heart rate flag: " + flag);
int format = -1;
// Heart rate bit number format
if ((flag & 0x01) != 0) {
format = BluetoothGattCharacteristic.FORMAT_UINT16;
Log.d(TAG, "Heart rate format UINT16.");
} else {
format = BluetoothGattCharacteristic.FORMAT_UINT8;
Log.d(TAG, "Heart rate format UINT8.");
}
final int heartRate = characteristic.getIntValue(format, 1);
Log.d(TAG, String.format("Received heart rate: %d", heartRate));
return heartRate;
}
private static Integer[] extractBeatToBeatInterval(
BluetoothGattCharacteristic characteristic) {
int flag = characteristic.getIntValue(BluetoothGattCharacteristic.FORMAT_UINT8, 0);
int format = -1;
int energy = -1;
int offset = 1; // This depends on hear rate value format and if there is energy data
int rr_count = 0;
if ((flag & 0x01) != 0) {
format = BluetoothGattCharacteristic.FORMAT_UINT16;
Log.d(TAG, "Heart rate format UINT16.");
offset = 3;
} else {
format = BluetoothGattCharacteristic.FORMAT_UINT8;
Log.d(TAG, "Heart rate format UINT8.");
offset = 2;
}
if ((flag & 0x08) != 0) {
// calories present
energy = characteristic.getIntValue(BluetoothGattCharacteristic.FORMAT_UINT16, offset);
offset += 2;
Log.d(TAG, "Received energy: {}"+ energy);
}
if ((flag & 0x16) != 0){
// RR stuff.
Log.d(TAG, "RR stuff found at offset: "+ offset);
Log.d(TAG, "RR length: "+ (characteristic.getValue()).length);
rr_count = ((characteristic.getValue()).length - offset) / 2;
Log.d(TAG, "RR length: "+ (characteristic.getValue()).length);
Log.d(TAG, "rr_count: "+ rr_count);
if (rr_count > 0) {
Integer[] mRr_values = new Integer[rr_count];
for (int i = 0; i < rr_count; i++) {
mRr_values[i] = characteristic.getIntValue(
BluetoothGattCharacteristic.FORMAT_UINT16, offset);
offset += 2;
Log.d(TAG, "Received RR: " + mRr_values[i]);
}
return mRr_values;
}
}
Log.d(TAG, "No RR data on this update: ");
return null;
}
假设我有与设备的连接,我怎样才能用它来提取心率和r-r间隔(节拍到节拍间隔)?如果有人可以做一个简短的例子,我会很高兴。另外,我想使用一个服务,以便它在后台运行,我可以做其他工作,它耗尽更少的电池。但是服务应该具有最高优先级,以免被杀死。
在extractBeatToBeatInterval()
方法中,有一个int offset = 1;
,其中包含说明
这取决于听力率值格式以及是否有能量数据
我不明白这个故事的含义。我应该使用什么偏移值?
其次,如果连接断开,我想收到通知,以便我可以处理它(例如显示消息)。我怎么能这样做?
答案 0 :(得分:0)
我可以帮助你解决这个问题。 对于连接中断,您可以像这样处理它
public void onConnectionStateChange(BluetoothGatt gatt, int status, int newState) {
if (newState == BluetoothGatt.STATE_CONNECTED) {
Log.e(Constants.TAGGattConnectThread, "Connected to the GATT Server " + status + " " +newState);
Log.e(Constants.TAGGattConnectThread, "Attempting to discover services");
bluetoothGatt.discoverServices();
}
else if(newState == BluetoothGatt.STATE_DISCONNECTED)
{
Log.e(Constants.TAGGattConnectThread,"Band disconnected");
//Write you disconnect handling code here
}
您还可以将“自动连接”选项设置为“真实”和“真实”。在连接Gatt的同时
bluetoothGatt = bluetoothDevice.connectGatt(context, true, bluetoothGattCallback);
为了创建服务,您可以创建一个Sticky服务,除非强制停止,否则它将自动重启。