1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-11-25 19:36:50 +01:00

Merge branch 'master' into feature-weather

This commit is contained in:
Daniele Gobbetti 2016-01-28 12:00:47 +01:00
commit 8e7dc18fa8

View File

@ -679,12 +679,11 @@ public class PebbleProtocol extends GBDeviceProtocol {
public byte[] encodeActivateHealth(boolean activate) {
byte[] blob;
byte command;
if (activate) {
command = BLOBDB_INSERT;
if (activate) {
blob = new byte[]{0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02};
} else {
command = BLOBDB_DELETE;
blob = null;
blob = new byte[]{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
}
return encodeBlobdb("activityPreferences", command, BLOBDB_HEALTH, blob);
}