项目作者: dmroeder

项目描述 :
从Allen Bradley Compact / Control Logix PLC读取/写入数据
高级语言: Python
项目地址: git://github.com/dmroeder/pylogix.git
创建时间: 2016-07-22T04:16:10Z
项目社区:https://github.com/dmroeder/pylogix

开源协议:Apache License 2.0

下载


pylogix

PyPI
PyPI
Versions
MicroPython
PyPI - Downloads
Discord

WARNING: There is a possibility of a scam using the pylogix name. Be careful with anything claiming to be pylogix. https://www.notpylogix.com

Pylogix is a communication driver that lets you easily read/write values from tags in Rockwell Automation ControlLogix, CompactLogix, and Micro8xx PLCs over Ethernet I/P using Python. Only PLCs that are programmed with RSLogix5000/Studio5000 or Connected Components Workbench (Micro8xx), models like PLC5, SLC, and MicroLogix are not supported. They use a different protocol, which I have no plans to support. You can also connect to RSEmulate, but it may require additional
configuration. See the Emulate document for more information.

Many devices support CIP objects that allow for automatic discovery (like RSLinx does), which pylogix can discover but will likely not be able to interact with in any other meaningful way. Pylogix is only intended to talk to the above-mentioned PLCs and is only tested against them. It likely will not communicate with any other brands.

For general support or questions, I created a discord. Feel free to join and ask questions, and I’ll do my best to help promptly.

Getting Started

There are no dependencies, so you can get going quickly without installing other prerequisite packages. Both python2 and python3 are supported.

Installing

Install pylogix with pip (Latest version):

  1. pylogix@pylogix-kde:~$ pip install pylogix

To install previous version before major changes (0.3.7):

  1. pylogix@pylogix-kde:~$ pip install pylogix==0.3.7

To upgrade to the latest version:

  1. pylogix@pylogix-kde:~$ pip install pylogix --upgrade

Alternatively, you can clone the repo and manually install it:

  1. pylogix@pylogix-kde:~$ git clone https://github.com/dmroeder/pylogix.git
  2. pylogix@pylogix-kde:~$ cd pylogix
  3. pylogix@pylogix-kde:~/pylogix$ python setup.py install --user

Verifying Installation

To verify the installation on Linux, open the terminal and use the following commands:

  1. pylogix@pylogix-kde:~$ python3
  2. Python 3.8.5 (default, Jan 27 2021, 15:41:15)
  3. [GCC 9.3.0] on linux
  4. Type "help", "copyright", "credits" or "license" for more information.
  5. >>> import pylogix
  6. >>> pylogix.__version__
  7. '0.7.10'

Your First Script:

The cloned repository will come with many examples, I’ll give one here. We’ll read one simple tag and print out the value. All methods will return the Response class, which contains TagName, Value and Status.

  1. from pylogix import PLC
  2. with PLC() as comm:
  3. comm.IPAddress = '192.168.1.9'
  4. ret = comm.Read('MyTagName')
  5. print(ret.TagName, ret.Value, ret.Status)

NOTE: If your PLC is in a slot other than zero (like can be done with ControLogix), then you can specify the slot with the following:

  1. comm.ProcessorSlot = 2

NOTE: If you are working with a Micro8xx PLC, you must set the Micro800 flag since the path is different:

  1. comm.Micro800 = True

Optionally set a specific maximum size for requests/replies. If not specified, defaults to try a Large, then a Small Forward Open (for Implicit, “Connected” sessions).

  1. comm.ConnectionSize = 508

Installing MicroPython

Checkout Documentation

Other Features

Pylogix has features other than simply reading/writing. See the documentation for more info, see the examples directory
simple use cases for the various methods.

FAQ

Here’s a list of frequent asked questions. faq

Authors

  • Burt Peterson - Initial work
  • Dustin Roeder - Maintainer - dmroeder
  • Fernando B. (TheFern2) - Contributor - TheFern2
  • Joe Ryan - Contributor - jryan
  • Perry Kundert - Contributor - pjkundert

License

This project is licensed under Apache 2.0 License - see the LICENSE file for details.

Acknowledgments

  • Archie of AdvancedHMI for all kinds pointers and suggestions.
  • Thanks to ottowayi for general python and good practice advice.
  • Thanks to all of the users that have tested and provided feedback.
  • Joe Ryan for Omron testing and feedback