Hello. I'm using the following code to read the tag structure of a PLC:
with LogixDriver(ipPlusSlot, large_packets=False, init_program_tags=True) as plc:
result["tagStructure"] = plc.tags
plc.tags is returning 49 tag values. However, when I use PyLogix's GetTagList() on the same PLC, I get 87 values back. I believe the extra PyLogix tags are IO tags, such as "VFD_CV_313:I" and "IV:I". Does PyComm have the ability to retrieve these types of tags?
Hello. I'm using the following code to read the tag structure of a PLC:
plc.tags is returning 49 tag values. However, when I use PyLogix's GetTagList() on the same PLC, I get 87 values back. I believe the extra PyLogix tags are IO tags, such as "VFD_CV_313:I" and "IV:I". Does PyComm have the ability to retrieve these types of tags?
Thanks