我正在尝试将数据(特别是一个笨拙,但我的例子是布尔值(从 plc 移动到 python 以用作显示图片的变量。问题是,如果我使用pycomm,我在Windows Powershell中遇到错误。我觉得这是一个非常简单的错误,来自基本的 python 错误,而不是 pycomm 问题,但我没有足够的信息来讲述。
系统信息:
configparser==3.5.0
cpppo==3.9.7
greenery==2.1
ipaddress==1.0.18
pycomm==1.0.8
pyreadline==2.1
pytz==2017.2
python==2.7.13
我正在使用的代码:
from pycomm.ab_comm.clx import Driver as ClxDriver
import logging
if __name__ == '__main__':
c = ClxDriver()
if c.open('IPADDRESSHERE'):
print(c.read_tag(['new_Bool']))
c.close()
这只是 github 上示例之一的精简版本 https://github.com/ruscito/pycomm
这是运行Powershell的结果:
PS C:\Users\Tom\Documents\PythonProjects> python pycomm2.py 回溯(最近一次调用(: 文件"pycomm2.py",第 10 行,在 打印(c.read_tag(['new_Bool'](( 文件 "C:\Python27\lib\site-packages\pycomm\ab_comm\clx.py",第 359 行,read_tag self.logger.warning(self._status( 属性错误:"驱动程序"对象没有属性"记录器" PS C:\Users\Tom\Documents\PythonProjects>
我一直在寻找这个 AttributeError 并试图找到解决方案,但我认为我找到的解决方案超出了我的头脑。如果我未能提供一些细节以使这个问题有意义,请告诉我。
编辑:
from pycomm.ab_comm.clx import Driver as ClxDriver
import logging
if __name__ == '__main__':
logging.basicConfig(
filename="ClxDriver.log",
format="%(levelname)-10s %(asctime)s %(message)s",
level=logging.DEBUG
)
c = ClxDriver()
if c.open('IPADRESSHERE'):
print(c.read_tag(['new_Bool']))
c.close()
产生相同的属性错误。
PS C:\Users\Tom\Documents\PythonProjects> python pycommtest.py 回溯(最近一次调用(: 文件"pycommtest.py",第 15 行,在 打印(c.read_tag(['new_Bool'](( 文件 "C:\Python27\lib\site-packages\pycomm\ab_comm\clx.py",第 359 行,read_tag self.logger.warning(self._status( 属性错误:"驱动程序"对象没有属性"记录器" PS C:\Users\Tom\Documents\PythonProjects>
我能够读取一个值,但不能使用 pycomm。使用 CPPPO,我能够根据需要不断更新变量。这可能无法回答我的旧代码出了什么问题的问题,但这是我的工作,以防未来的人必须做同样的事情。感谢用户Liverpool_chris和Reddit的深渊。
https://www.reddit.com/r/PLC/comments/5x3y5z/python_cpppo_library_writing_to_tag_in_plc/
from cpppo.server.enip.get_attribute import proxy_simple
import time
host = "IPHERE"
while True:
x, = proxy_simple(host).read(( "CPID"))
print x
time.sleep(5)