PLC is not responding to Logixdrivers

Laaxmi

Member
Join Date
Jul 2023
Location
India
Posts
1
Have tried to get the tag details from the PLC through python pycomm module.But getting Tag doesn't exist error.

Am using pycomm version = 0.11.0

Can anyone let me know how could resolve this issue?

>>> from pycomm3 import LogixDriver
>>> plc = LogixDriver('172.16.214.180', init_info=False,init_tags=False, large_packets=False,micro800=True)
>>> plc.open()
True
>>> plc.info
{}
>>> plc.read('Std_AGV1_Fault_Count')
Tag(tag='Std_AGV1_Fault_Count', value=None, type=None, error="Tag doesn't exist - Std_AGV1_Fault_Count")
>>> plc.write(('test',0))
Tag(tag='test', value=None, type=None, error="Tag doesn't exist - test")
>>> plc.read('test')
Tag(tag='test', value=None, type=None, error="Tag doesn't exist - test")
>>>
 

Similar Topics

Hi every one am working on this machine ,where there is a motor that rotates an arm with high speed when the arm reaches the sensor the motor...
Replies
8
Views
2,021
Hello all. I'm having download issues with my laptop to my plc. On the hardware side I have windows 7, have my port configured in my device...
Replies
3
Views
1,931
Hi, I just wanna know why is it that when I down loaded my program in a Mitsubishi PLC and monitor it, the PLC does'nt seem to read my program...
Replies
1
Views
2,678
Hello, im quite new and still learning. I would like to ask is it possible for FATEK PLC to read data value more than 16k? I'm trying to move my...
Replies
0
Views
62
Hi all, looking to model old RR relays in PLC. Does anyone have any SPECIFIC examples on how to model a relay such as a polar relay, slow pickup...
Replies
0
Views
94
Back
Top Bottom