Hi can someone help me with a simple PLC code im running a thermostat on a base if T1 is bigger then T8 turn TTL 1 on
START
CALLSUB SOLAR
END
SOLAR:
TSTGT T1 T8
SET OP1 1
TSTLT T1 T8
SET OP1 0
RET
but i get relays constantly turning on-off when the temp are the same +,- 0.1 what i need is a line added with a few degrees °C offset.
Thanks for help
START
CALLSUB SOLAR
END
SOLAR:
TSTGT T1 T8
SET OP1 1
TSTLT T1 T8
SET OP1 0
RET
but i get relays constantly turning on-off when the temp are the same +,- 0.1 what i need is a line added with a few degrees °C offset.
Thanks for help