mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-11 20:49:25 +01:00
Do not enable insights on the watch. Add notice about health activation to changelog.
This commit is contained in:
parent
ba9e00d2e4
commit
03ad7f5a24
@ -3,6 +3,8 @@
|
||||
####Version 0.7.4 (next)
|
||||
* Refactored the settings activity: User details are now generic instead of miband specific. Old settings are preserved.
|
||||
* Pebble: Fix regression with broken active reconnect since 0.7.0
|
||||
* Pebble: Support activation and deactivation of Pebble Health. Activation uses the User details as seen above. Insigths are NOT activated.
|
||||
** Please be aware that deactivation does NOT delete the data stored on the watch (but it seems to stop the tracking), and we do not know how to switch to metric length units.
|
||||
|
||||
####Version 0.7.3
|
||||
* Pebble: Report connection state to PebbleKit companion apps via content provider. NOTE: Makes Gadgetbridge mutual exclusive with the original Pebble app.
|
||||
|
@ -695,12 +695,10 @@ public class PebbleProtocol extends GBDeviceProtocol {
|
||||
Integer weigthDag = activityUser.getActivityUserWeightKg() * 100;
|
||||
buf.putShort(weigthDag.shortValue());
|
||||
buf.put((byte) 0x01); //activate tracking
|
||||
buf.put((byte) 0x01); //activity Insights
|
||||
buf.put((byte) 0x01); //sleep Insights
|
||||
buf.put((byte) 0x00); //activity Insights
|
||||
buf.put((byte) 0x00); //sleep Insights
|
||||
buf.put((byte) activityUser.getActivityUserAge());
|
||||
buf.put((byte) activityUser.getActivityUserGender());
|
||||
//blob = new byte[]{0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02};
|
||||
|
||||
blob = buf.array();
|
||||
} else {
|
||||
blob = new byte[]{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
|
||||
|
Loading…
Reference in New Issue
Block a user