diff --git a/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/service/devices/pebble/DatalogSessionAnalytics.java b/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/service/devices/pebble/DatalogSessionAnalytics.java index 9a696952..419b68b6 100644 --- a/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/service/devices/pebble/DatalogSessionAnalytics.java +++ b/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/service/devices/pebble/DatalogSessionAnalytics.java @@ -59,7 +59,7 @@ class DatalogSessionAnalytics extends DatalogSession { LOG.info("Battery reading for TS " + messageTS + " is: " + reportedMilliVolts + " milliVolts, mapped to percentage: " + milliVoltstoPercentage(reportedMilliVolts)); if (messageTS > 0 && reportedMilliVolts < 5000) { //some safety checks - mGBDeviceEventBatteryInfo.state = BatteryState.BATTERY_NORMAL; +// mGBDeviceEventBatteryInfo.state = BatteryState.BATTERY_NORMAL; //uncoomment this to show the battery status in the control center mGBDeviceEventBatteryInfo.level = milliVoltstoPercentage(reportedMilliVolts); return new GBDeviceEvent[]{mGBDeviceEventBatteryInfo, null};