Use Kilometers as distance unit
This commit is contained in:
parent
2f8207abf9
commit
10b5c571bb
|
@ -573,6 +573,7 @@ public class PebbleIoThread extends GBDeviceIoThread {
|
|||
|
||||
if (uri.equals(Uri.parse("fake://health"))) {
|
||||
write(mPebbleProtocol.encodeActivateHealth(true));
|
||||
write(mPebbleProtocol.encodeSaneDistanceUnit());
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue