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!")