-
Hi, I am trying to connect to a ControlLogix5583 using the CIPDriver.
Output: When I try to open the connection I see the following information: Output: And if I try to read the module info I get this exception: Output:
Can you help me understand what could be the problem? am I missing some configuration? Thanks a lot for your help. Alex |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I found the issue, I wasn't addressing the PLC slot (located in slot 1). that worked for me.
Thanks |
Beta Was this translation helpful? Give feedback.
I found the issue, I wasn't addressing the PLC slot (located in slot 1).
that worked for me.
with LogixDriver('192.168.1.2/1') as plc:
print(plc.get_tag_list())
Thanks