(20.04.2020, 16:00)admin Wrote: if value == true then and if value then work the same when value variable type is Boolean (true/false). If value for 7/0/0 is true then summer mode part is executed otherwise winter mode.
Thanks Edgard,
I understand, now I try it and let you know if it works as expected, good evening
if not value_3 then
if value1 then
out = delta <= (setpoint - temp) - I need this in winter
else
out = delta <= (temp - setpoint) - I need this in the summer
end
end
grp.write ('3/0/206', out)
in WINTER (7/0/0 = 1)
3/0/206 = 1 when the setpoint <temp
3/0/206 = 0 when the setpoint> temp
if not value_3 then
if value1 then
out = delta <= (setpoint - temp) - I need this in winter
else
out = delta <= (temp - setpoint) - I need this in the summer
end
end
grp.write ('3/0/206', out)
in WINTER (7/0/0 = 1)
3/0/206 = 1 when the setpoint <temp
3/0/206 = 0 when the setpoint> temp
if not value_3 then
if not value1 then
out = delta <= (setpoint - temp)
else
out = delta <= (temp - setpoint)
end
end
grp.write ('3/0/206', out)
ok Edgard works correctly, if you have something to think about the previous message, according to me it is now perfect and for this I thank you very much, I have been trying for months and I couldn't have done it.