I can turn on and off the outputs manually but that’s the only thing I can do. It won’t change the backlight to on, won’t do load graphics and when I send a program it gives me this error? I tried to restore to default and it says fail.
I updated the temco software to the latest Aug 9 2024 and it seems to be working today.
One useful tip when things are not going as expected, check the communications health down at the bottom left corner. In my example here I am offline so its showing health 0%.
The program you wrote will start out1, wait ten seconds, then stop out1, then immediately the program exits and starts at line 10 again which turns out1 on again. So out1 is going to be on continuously.
Here’s a good way to do an on-off pulse train. The program runs continuously with no waits and no gotos required.
10 IF TIME-OFF( OUT1 ) > 0:0:10 THEN START OUT1
20 IF TIME-ON( OUT1 ) > 0:0:10 THEN STOP OUT1
1 Like