I am confused at the heating/cooling function and feel like there are potential bugs there.
I only have a heater, no cooler. Previously, if you only had a heater, you could set a heater min and max set point. However, on the RC0, you set "heater threshold". I am assuming that the way this is supposed to work is:
If temperature is above heater threshold, heater should turn off
If temperature is below heater threshold, heater should turn on
I just set my heater threshold to 76. I am getting the following on my logs:
Code:
Sep 29 09:01:43 reefpi reef-pi[7235]: 2018/09/29 09:01:43 temperature sub-system: sensor Temperature value: 77.225
Sep 29 09:01:43 reefpi reef-pi[7235]: 2018/09/29 09:01:43 temperature subsystem: Current temperature is above maximum threshold. Executing cool down routine
Sep 29 09:01:43 reefpi reef-pi[7235]: 2018/09/29 09:01:43 Setting GPIO Pin: 5 State: 1
So working as expected, relay should be off and it is
However, when I change the heater threshold to 79, nothing changes:
Code:
Sep 29 09:04:53 reefpi reef-pi[7399]: 2018/09/29 09:04:53 temperature sub-system: sensor Temperature value: 77.225
Sep 29 09:04:53 reefpi reef-pi[7399]: 2018/09/29 09:04:53 temperature subsystem: Current temperature is above maximum threshold. Executing cool down routine
Sep 29 09:04:53 reefpi reef-pi[7399]: 2018/09/29 09:04:53 Setting GPIO Pin: 5 State: 1
Not working as expected, relay should turn on when the temperature is below threshold.
Have I gone crazy? Anyone else experiencing issues with the heater control on RC0?