From b5d9daf786e4c62a3188519bf3584e20f52a05b8 Mon Sep 17 00:00:00 2001 From: Paul Warren Date: Tue, 5 Nov 2024 15:04:14 +1100 Subject: [PATCH] 15% seems like a better target --- examples/check_peak.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/check_peak.py b/examples/check_peak.py index f7d9607..f8d32a3 100755 --- a/examples/check_peak.py +++ b/examples/check_peak.py @@ -50,8 +50,8 @@ print("1h est WH: %.2f" % h_estim) print("1hr est %%: %.2f" % h_estpct) -time_check = (current_time.hour == 5 or current_time.hour == 15) -estimate_check = (h_estpct < 18.0) +time_check = (current_time.hour == 6 or current_time.hour == 15) +estimate_check = (h_estpct < 15.0) if (time_check and estimate_check): print("Full BEEEEEAAAAANS!")