Amazfit Bip: log more events coming from the watch

master
Andreas Shimokawa 2017-09-16 12:33:33 +02:00
parent e5a8ca5374
commit 9471131490
2 changed files with 12 additions and 0 deletions

View File

@ -18,10 +18,13 @@ package nodomain.freeyourgadget.gadgetbridge.service.devices.amazfitbip;
public class AmazfitBipEvent { 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 BUTTON_PRESSED = 0x04;
public static final byte START_NONWEAR = 0x06; public static final byte START_NONWEAR = 0x06;
public static final byte CALL_REJECT = 0x07; public static final byte CALL_REJECT = 0x07;
public static final byte CALL_ACCEPT = 0x09; public static final byte CALL_ACCEPT = 0x09;
public static final byte ALARM_TOGGLED = 0x0a; public static final byte ALARM_TOGGLED = 0x0a;
public static final byte BUTTON_PRESSED_LONG = 0x0b; public static final byte BUTTON_PRESSED_LONG = 0x0b;
public static final byte TICK_30MIN = 0x0e; // unsure
} }

View File

@ -139,6 +139,15 @@ public class AmazfitBipSupport extends MiBand2Support {
case AmazfitBipEvent.ALARM_TOGGLED: case AmazfitBipEvent.ALARM_TOGGLED:
LOG.info("An alarm was toggled"); // TODO: sync alarms watch -> GB LOG.info("An alarm was toggled"); // TODO: sync alarms watch -> GB
break; 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: default:
LOG.warn("unhandled event " + value[0]); LOG.warn("unhandled event " + value[0]);
} }