I'm trying in a script to change the setpoint but not getting what I'm expecting. I have a script running for my stove and if the temperature reaches 89° I want to dump some heat in one of the radiators in my house by increasing the temperature.
Code: Select all
elseif
Temp_Hal >= 89 then
Hal_setpoint.updateSetPoint(20)Code: Select all
elseif
Temp_H >= 89 then
Hal_setpoint.updateSetPoint(+ 8)But it seems DzVents does not allow me to use the + to add some to the setpoint. Is there a other way to do this? How can I store current setpoint value and then later use this again? Can some point me to a good topic where i can find some info on storing a setpoint value?