From 97994e595f10739e5ba4faa7c958ec25fd0ea2f4 Mon Sep 17 00:00:00 2001 From: Willy-JL Date: Mon, 23 Jan 2023 13:39:25 +0000 Subject: [PATCH] Bar percent battery by default --- applications/services/power/power_service/power.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/applications/services/power/power_service/power.h b/applications/services/power/power_service/power.h index 5d492202b..58c85a9a9 100644 --- a/applications/services/power/power_service/power.h +++ b/applications/services/power/power_service/power.h @@ -26,13 +26,13 @@ typedef enum { } PowerEventType; typedef enum { - BatteryStyleOff, - BatteryStyleBar, - BatteryStylePercent, - BatteryStyleInvertedPercent, - BatteryStyleRetro3, - BatteryStyleRetro5, - BatteryStyleBarPercent, + BatteryStyleOff = 1, + BatteryStyleBar = 2, + BatteryStylePercent = 3, + BatteryStyleInvertedPercent = 4, + BatteryStyleRetro3 = 5, + BatteryStyleRetro5 = 6, + BatteryStyleBarPercent = 0, } BatteryStyle; typedef union {