Skip to main content

Read/Write Rockwell Automation Logix based PLCs

Project description

pylogix2

This project will allow you to easily read/write values from tags in Rockwell Automation Logix based PLC's over Ethernet I/P using Python. PLC models inclued CompactLogix, ControlLogix and Micro8xx. Python2 and Python3 are both supported.

Getting Started

There are currently no dependencies so you can get going quickly without having to install any other prerequiste packages.

Installing

You can clone the repo with the following:

git clone https://github.com/daniel-leicht/pylogix2.git
cd pylogix2
python setup.py install --user

Or you can install with pip:

pip install pylogix2

Verifying Installation

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

python
import pylogix
pylogix.__version__

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 tag_name, value and status.

from pylogix import PLC
with comm as PLC()
    comm.IPAddress = '192.168.1.9'
    ret = comm.Read('MyTagName')
    print(ret.tag_name, 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:

comm.ProcessorSlot = 2

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

comm.Micro800 = True

If you want to query module information for modules under a nested bus / backplane:

# Uses custom CIP routing path
comm.GetModuleProperties(custom_routing_path=[(1, 0), (7, 2)])

The above code will fetch module information for slot 2 of a CompactLogix CPU CompactBus virtual backplane.

Other Features

Pylogix has features other than simply reading/writing. You can see all of them in the examples, I'll also list them here

  • Discover()
  • GetPLCTime()
  • SetPLCTime()
  • GetTagList()
  • GetModuleProperties(slot=0)

Authors

License

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

Acknowledgements

  • 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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pylogix2-0.5.3.tar.gz (34.3 kB view details)

Uploaded Source

File details

Details for the file pylogix2-0.5.3.tar.gz.

File metadata

  • Download URL: pylogix2-0.5.3.tar.gz
  • Upload date:
  • Size: 34.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.6.3

File hashes

Hashes for pylogix2-0.5.3.tar.gz
Algorithm Hash digest
SHA256 6662bf32b574d858a00912b289340c931685efbe7f17450586fb6909f5e1aa59
MD5 0cd0bcbcab5373047a328d944a0cda9e
BLAKE2b-256 73f956e27526df22339b7657607190eb56b5b6e42c9da85de3d011a307e93d2c

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page