Bump max. displayed temperature to 40 °C

...
This commit is contained in:
FliegendeWurst 2022-06-19 10:34:13 +02:00
parent b732d09579
commit 4d90347fd0

View File

@ -103,7 +103,7 @@ fn main() {
let mut max = hour[hour.len() - 2];
//println!("min {} max {}", min, max);
// sanity check value
if max > 300 {
if max > 400 {
if vals.is_empty() {
max = min;
} else {