mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-06-05 21:49:48 +02:00
Use Kilometers as distance unit
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user