We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c086520 + 81a1431 commit 707446eCopy full SHA for 707446e
1 file changed
src/displayapp/screens/BatteryIcon.cpp
@@ -5,13 +5,13 @@
5
using namespace Pinetime::Applications::Screens;
6
7
const char* BatteryIcon::GetBatteryIcon(uint8_t batteryPercent) {
8
- if (batteryPercent > 90)
+ if (batteryPercent > 87)
9
return Symbols::batteryFull;
10
- if (batteryPercent > 75)
+ if (batteryPercent > 62)
11
return Symbols::batteryThreeQuarter;
12
- if (batteryPercent > 50)
+ if (batteryPercent > 37)
13
return Symbols::batteryHalf;
14
- if (batteryPercent > 25)
+ if (batteryPercent > 12)
15
return Symbols::batteryOneQuarter;
16
return Symbols::batteryEmpty;
17
}
0 commit comments