Skip to content

Commit

Permalink
Fix bad formatting in SystemInfo.
Browse files Browse the repository at this point in the history
  • Loading branch information
JF002 committed Aug 22, 2020
1 parent f7e40b1 commit 754918f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/DisplayApp/Screens/Clock.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ namespace Pinetime {
Pinetime::Controllers::DateTime::Days currentDayOfWeek = Pinetime::Controllers::DateTime::Days::Unknown;
uint8_t currentDay = 0;

DirtyValue<uint8_t> batteryPercentRemaining {0};
DirtyValue<float> batteryPercentRemaining {0};
DirtyValue<bool> bleState {false};
DirtyValue<std::chrono::time_point<std::chrono::system_clock, std::chrono::nanoseconds>> currentDateTime;
DirtyValue<uint32_t> stepCount {0};
Expand Down
9 changes: 5 additions & 4 deletions src/DisplayApp/Screens/SystemInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,10 @@ bool SystemInfo::OnTouchEvent(Pinetime::Applications::TouchEvents event) {
}

std::unique_ptr<Screen> SystemInfo::CreateScreen1() {
auto batteryPercent = static_cast<int16_t>(batteryController.PercentRemaining());
if(batteryPercent > 100) batteryPercent = 100;
else if(batteryPercent < 0) batteryPercent = 0;
auto batteryPercentF = batteryController.PercentRemaining();
uint16_t batteryPercent = 0;
if(batteryPercentF > 100.0f) batteryPercent = 100;
else if(batteryPercentF < 0.0f) batteryPercent = 0;

uint8_t brightness = 0;
switch(brightnessController.Level()) {
Expand Down Expand Up @@ -86,7 +87,7 @@ std::unique_ptr<Screen> SystemInfo::CreateScreen1() {
"Version:%ld.%ld.%ld\n"
"Build: %s\n"
" %s\n"
"Date: %02d/%02hhu/%04d\n"
"Date: %02d/%02d/%04d\n"
"Time: %02d:%02d:%02d\n"
"Uptime: %02lud %02lu:%02lu:%02lu\n"
"Battery: %d%%\n"
Expand Down

0 comments on commit 754918f

Please sign in to comment.