Merge branch 'master' into feature-weather

master
Daniele Gobbetti 2016-01-28 12:00:47 +01:00
commit 8e7dc18fa8
1 changed files with 2 additions and 3 deletions

View File

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