mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-29 05:16:51 +01:00
Amazfit Bip: log more events coming from the watch
This commit is contained in:
parent
e5a8ca5374
commit
9471131490
@ -18,10 +18,13 @@ package nodomain.freeyourgadget.gadgetbridge.service.devices.amazfitbip;
|
||||
|
||||
|
||||
public class AmazfitBipEvent {
|
||||
public static final byte FELL_ASLEEP = 0x01;
|
||||
public static final byte WOKE_UP = 0x02;
|
||||
public static final byte BUTTON_PRESSED = 0x04;
|
||||
public static final byte START_NONWEAR = 0x06;
|
||||
public static final byte CALL_REJECT = 0x07;
|
||||
public static final byte CALL_ACCEPT = 0x09;
|
||||
public static final byte ALARM_TOGGLED = 0x0a;
|
||||
public static final byte BUTTON_PRESSED_LONG = 0x0b;
|
||||
public static final byte TICK_30MIN = 0x0e; // unsure
|
||||
}
|
||||
|
@ -139,6 +139,15 @@ public class AmazfitBipSupport extends MiBand2Support {
|
||||
case AmazfitBipEvent.ALARM_TOGGLED:
|
||||
LOG.info("An alarm was toggled"); // TODO: sync alarms watch -> GB
|
||||
break;
|
||||
case AmazfitBipEvent.FELL_ASLEEP:
|
||||
LOG.info("Fell asleep");
|
||||
break;
|
||||
case AmazfitBipEvent.WOKE_UP:
|
||||
LOG.info("Woke up");
|
||||
break;
|
||||
case AmazfitBipEvent.TICK_30MIN:
|
||||
LOG.info("Tick 30 min (?)");
|
||||
break;
|
||||
default:
|
||||
LOG.warn("unhandled event " + value[0]);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user