Skip to main content

Python driver for AutomationDirect Productivity Series PLCs.

Project description

Productivity

Python driver and command-line tool for AutomationDirect Productivity Series PLCs.

Installation

uv pip install productivity

Usage

PLC Configuration

This driver uses Modbus TCP/IP for communication. Unlike the ClickPLC, modbus addresses need to be manually configured in the Productivity PLC firmware (see manual).

To use this driver, go to Write Program → Tag Database, scroll down to the values you care about, and double click the Mod Start cell of each value to assign an address. Then, go to File → Export → Tags to export a csv file. The file is used here so you don't need to remember the addresses.

Command Line

To print the tags and their values, simply call the library with the PLC IP address and the tags file.

$ productivity the-plc-ip-address path/to/tags.csv

Use --set to set values on the PLC:

$ productivity the-plc-ip-address path/to/tags.csv -s "{int_test: 4, float_test: 4.45, string_test: foo}"

The --set parameter takes YAML, a simple data format that allows you to easily set multiple tags at once.

See productivity --help for more.

Python

This driver uses Python async/await syntax to asynchronously communicate with a Productivity2000 PLC. For example:

import asyncio
from productivity import ProductivityPLC

async def run():
    async with ProductivityPLC('the-plc-ip-address', 'path/to/tags.csv') as plc:
        print(await plc.get())

asyncio.run(run())

It is also possible to set tag values:

async def run():
    async with ProductivityPLC('the-plc-ip-address', 'path/to/tags.csv') as plc:
        await plc.set(start=True, setpoint=1.1)

asyncio.run(run())

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

productivity-0.14.0.tar.gz (18.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

productivity-0.14.0-py3-none-any.whl (18.8 kB view details)

Uploaded Python 3

File details

Details for the file productivity-0.14.0.tar.gz.

File metadata

  • Download URL: productivity-0.14.0.tar.gz
  • Upload date:
  • Size: 18.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for productivity-0.14.0.tar.gz
Algorithm Hash digest
SHA256 bc3d7c8ef11dde6753794e60c0b8fe16c6488c16910734e74f1a94cfa3133e69
MD5 d508a52ed5019db1f27280856e5aa7a7
BLAKE2b-256 9fa38acc380fd0f45a963649b10479fe65293287e5664bf666c394a56078f291

See more details on using hashes here.

File details

Details for the file productivity-0.14.0-py3-none-any.whl.

File metadata

  • Download URL: productivity-0.14.0-py3-none-any.whl
  • Upload date:
  • Size: 18.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for productivity-0.14.0-py3-none-any.whl
Algorithm Hash digest
SHA256 62825b16b15dae5b2fb22e14ac4509ce67c478630d1680418f666539a607da11
MD5 630746d403681bf4aa12e21c568fbb51
BLAKE2b-256 bd76d473af08f59d1e53a31a975cc2de46d1b99bfe9e51926abcd265774ed34c

See more details on using hashes here.

Supported by

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