From 43897ba5b34d6108c8acbc3f1a64ae6f52f11931 Mon Sep 17 00:00:00 2001 From: Jon Ziebell Date: Thu, 4 Feb 2021 08:36:34 -0500 Subject: [PATCH] Re-enabled daytime profile data use (solar heating) I figure with ignore_solar_heating = true, the profiles will reflect the night really well, but the day poorly. If ignore_solar_heating = false, it should reflect both day and night about the same and give a better average. Plus more data will be available to the profiles. --- api/profile.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/profile.php b/api/profile.php index 1cbfc33..f182674 100644 --- a/api/profile.php +++ b/api/profile.php @@ -111,7 +111,7 @@ class profile extends cora\api { * Attempt to ignore the effects of solar heating by only looking at * samples when the sun is down. */ - $ignore_solar_heating = true; + $ignore_solar_heating = false; // Get some stuff $thermostat = $this->api('thermostat', 'get', $thermostat_id);