Signals not updating properly, mismatch between component and connected variable

Here are two screenshots taken at the same time:
image

You can see that the FWDDecel and Unload signals of Conv1 are true, but in the connected variable list they are false. This also means that the connected PLC sees these as false.

I am at a complete loss as to what is causing this.

I assume this is related to your other topic.

1 Like

Yes, I didn’t realize it at the time. I decided to change the way I was signalling to the PLC and unknowingly ran into the same problem.

I was trying to assign the value of signals using: Load.Value = True
The correct way to do it is Load.signal(True)
(Just in case anyone comes looking for the same answer)