Use Kilometers as distance unit

here
danielegobbetti 2016-02-07 16:44:16 +01:00
parent 2f8207abf9
commit 10b5c571bb
2 changed files with 9 additions and 0 deletions

View File

@ -573,6 +573,7 @@ public class PebbleIoThread extends GBDeviceIoThread {
if (uri.equals(Uri.parse("fake://health"))) {
write(mPebbleProtocol.encodeActivateHealth(true));
write(mPebbleProtocol.encodeSaneDistanceUnit());
return;
}

View File

@ -712,6 +712,14 @@ public class PebbleProtocol extends GBDeviceProtocol {
return encodeBlobdb("activityPreferences", command, BLOBDB_HEALTH, blob);
}
public byte[] encodeSaneDistanceUnit() {
byte[] blob;
byte command;
command = BLOBDB_INSERT;
blob = new byte[]{0x00};
return encodeBlobdb("unitsDistance", command, BLOBDB_HEALTH, blob);
}
public byte[] encodeReportDataLogSessions() {
return encodeSimpleMessage(ENDPOINT_DATALOG, DATALOG_REPORTSESSIONS);
}