Skip to content
This repository has been archived by the owner on Jan 11, 2021. It is now read-only.

Commit

Permalink
improved battery indicator
Browse files Browse the repository at this point in the history
  • Loading branch information
44670 committed Feb 6, 2017
1 parent 5fee35f commit e010c45
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions clock/source/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,11 @@ void drawWidget(int batteryLevel, u32 addr, u32 stride, u32 format, u8 hour, u8
if (batteryLevel == 1) {
batval = 2;
} else if (batteryLevel == 2) {
batval = 6;
batval = 5;
} else if (batteryLevel == 3) {
batval = 9;
batval = 8;
} else if (batteryLevel == 4) {
batval = 13;
batval = 11;
} else if (batteryLevel == 5) {
batval = 16;
}
Expand Down

0 comments on commit e010c45

Please sign in to comment.