Hi everyone i’m newish here. Been reading a few posts etc and getting started
I have come across a little problem
My sons room gets really hot and I want to be able to set temp independently of the house and monitor it.
It has a fibaro motion sensor in there and a danfoss lc13
I Used the tommysqueak dh v3.01 on it and hav set up a WebCoRE pistons to trigger it
I don’t need it to call for heat as the rest of the heating system is dumb about from a hive thermostat
It should just shut off the rad when room gets to a certain temp
I made a simple piston to deal with this but even when the lc13 is set to off the rad is still hot. I let it run last night and it turned the valve off at 5.44am yet at 7.30 the rad was still hot. The lc13 said 4deg on top and the piston was testing like it should
//
/* Loft Temp below 23deg */
//
/* Author : Garry /
/ Created : 18/02/2019, 21:02:32 /
/ Modified : 18/02/2019, 21:55:16 /
/ Build : 5 /
/ UI version : v0.3.109.20181207 */
/**************************************************************/
/* Stops rad heating loft to above 23deg */
execute
if
Loft Sensor’s temperature is greater than 23°C
then
with
Loft Radiator
do
Turn off;
end with;
else
with
Loft Radiator
do
Turn on;
Set heating point at 26°C;
end with;
end if;
end execute;
Edit
What is going wrong? Do I need to calibrate the trv to know where the shut off point is?