Fix hold data on page clock and change the unit from mBar to hPa

This commit is contained in:
norbert-walter 2022-06-26 16:16:53 +02:00
parent 40e5bd7c29
commit 765045174a
2 changed files with 5 additions and 5 deletions

View File

@ -91,7 +91,7 @@ class PageBME280 : public Page
else{
svalue3 = "---";
}
String unit3 = "mBar"; // Unit of value
String unit3 = "hPa"; // Unit of value
// Optical warning by limit violation (unused)
if(String(flashLED) == "Limit Violation"){

View File

@ -140,11 +140,11 @@ public:
display.setTextColor(textcolor);
display.setFont(&Ubuntu_Bold8pt7b);
display.setCursor(335, 65);
display.print(sunrise); // Value
display.setFont(&Ubuntu_Bold12pt7b);
display.setCursor(335, 95);
if(holdvalues == false) display.print(sunrise); // Value
else display.print(svalue3old);
display.setFont(&Ubuntu_Bold12pt7b);
display.setCursor(335, 95);
display.print("SunR"); // Name
// Horizintal separator right
display.fillRect(340, 149, 80, 3, pixelcolor);
@ -159,7 +159,7 @@ public:
display.setTextColor(textcolor);
display.setFont(&Ubuntu_Bold8pt7b);
display.setCursor(335, 250);
if(holdvalues == false) display.print(sunset); // Value
if(holdvalues == false) display.print(sunset); // Value
else display.print(svalue4old);
display.setFont(&Ubuntu_Bold12pt7b);
display.setCursor(335, 220);