Good morning bm,
Think of DT80 as a timer. If you have a schedule running every 30 seconds then you can simply turn the relays on then off. Then count 20 cycles and repeat the process.
In programming logic there are a number of ways to build the code. One approach is:
Begin
1CV=0
RA30S
1CV=1CV+1 'Count the number of 30 second
If(1CV==1){1DSO=0; 2DS)=0} 'First time turn on the relay
If(1CV>1){1DSO=1; 2DSO=0} 'If not first time turn off the relay
If(1CV>21){1CV=0) 'If 10 minutes reset the counter.
End
Cheers,
Roger
Good morning bm,
Think of DT80 as a timer. If you have a schedule running every 30 seconds then you can simply turn the relays on then off. Then count 20 cycles and repeat the process.
In programming logic there are a number of ways to build the code. One approach is:
````
Begin
1CV=0
RA30S
1CV=1CV+1 'Count the number of 30 second
If(1CV==1){1DSO=0; 2DS)=0} 'First time turn on the relay
If(1CV>1){1DSO=1; 2DSO=0} 'If not first time turn off the relay
If(1CV>21){1CV=0) 'If 10 minutes reset the counter.
End
````
Cheers,
Roger