thank you for your help! I will heed your you help once again
I ended up with the below script that is a event based on the setpoint to change the offset but only if the actual temperature is higher than the setpoint here is the script that i made that doesnt work.
thank you advance
I ended up with the below script that is a event based on the setpoint to change the offset but only if the actual temperature is higher than the setpoint here is the script that i made that doesnt work.
Code:
local setpoint = event.getvalue()
local actual_temp = '12/0/5'
local zone1 = grp.getvalue('3/3/1') - (0.1)
local temp_diff = setpoint - actual_temp
if temp_diff <= 0.1
then grp.write('3/3/1',zone1)
end
thank you advance