Skip to main content

Python3 programming for RevolutionPi of KUNBUS GmbH

Project description

RevPiModIO

Documentation:

For a complete reference of all classes, methods, and functions, please see the official documentation: https://revpimodio2.readthedocs.io/

Python3 programming for RevolutionPi of KUNBUS GmbH.

The module provides all devices and IOs from the piCtory configuration in Python3. It allows direct access to the values via their assigned name. Read and write actions on the process image are managed by the module itself without the programmer having to worry about offsets and addresses.

For the gateway modules such as ModbusTCP or Profinet, own 'inputs' and 'outputs' can be defined over a specific address range. These IOs can be accessed directly from the values using Python3.

RevolutionPi Hardware

The hardware configuration is done via a web page, which is located on the PiCore module. The program is called “piCtory”.

All inputs and outputs can be assigned symbolic names to facilitate their handling and programming. If this configuration is created and activated, the data of the input, output and gateway modules are exchanged via a 4096-byte process image.

Our RevPiModIO module

If you use our module in Python3, it uses the piCtory configuration to create all the inputs and outputs with their symbolic names as objects. The programmer can address these directly via the symbolic names and access the values of the inputs and outputs – both reading and writing!

import revpimodio2
rpi = revpimodio2.RevPiModIO(autorefresh=True)

# If input t_on is high, set output h_on high
if rpi.io.t_on.value:
    rpi.io.h_on.value = True

# Clean up and sync process image
rpi.exit()

In addition, it provides the developer with many useful functions that can be used to develop cyclic or event-based programs.

If you know the .add_event_detect(...) function of the GPIO module from the Raspberry Pi, you can also achieve this behavior with the Revolution Pi:

import revpimodio2
rpi = revpimodio2.RevPiModIO(autorefresh=True)

def event_detect(ioname, iovalue):
    """Event function."""

    # Set actual input value to output 'h_on'
    rpi.io.h_on.value = iovalue

    print(ioname, iovalue)

# Bind event function to input 't_on'
rpi.io.t_on.reg_event(event_detect)

rpi.mainloop()

Even with hardware changes, but constant names of the inputs and outputs, the actual Python3 source code does not need to be changed!

How it works:

                         |-----------------------------------------------------|
                         |                                                     |
                         |                  Python program                     |
                         |                                                     |
--------------------     |     ----------------          --------------------  |
|                  |     |     |              |          |                  |  |
|  RevPi hardware  |  <----->  |  RevPiModIO  |  <---->  | Your source code |  |
|                  |     |     |              |          |                  |  |
--------------------     |     ----------------          --------------------  |
                         |                                                     |
                         |-----------------------------------------------------|

Summary

With this module we want to spare all Python developers a lot of work. All communication with the process image is optimally performed inside the module. Changes to the inputs and outputs are also evaluated along with the additional functions of the module give the developer many tools along the way.

More examples: (https://revpimodio.org/en/blogs/examples/)

Provided under the LGPLv2 license

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

revpimodio2-2.8.1.tar.gz (241.8 kB view details)

Uploaded Source

Built Distribution

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

revpimodio2-2.8.1-py3-none-any.whl (68.2 kB view details)

Uploaded Python 3

File details

Details for the file revpimodio2-2.8.1.tar.gz.

File metadata

  • Download URL: revpimodio2-2.8.1.tar.gz
  • Upload date:
  • Size: 241.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for revpimodio2-2.8.1.tar.gz
Algorithm Hash digest
SHA256 484a29cfdf33e550e6619896a4fb710a78b392222943856c82e9630c3611b7a1
MD5 89eb574729563b14c0b01678bb29e38a
BLAKE2b-256 1d2c4e606a291a1befb33d82b10406ba179240ef3328ddb38d1fa058ba32fa84

See more details on using hashes here.

File details

Details for the file revpimodio2-2.8.1-py3-none-any.whl.

File metadata

  • Download URL: revpimodio2-2.8.1-py3-none-any.whl
  • Upload date:
  • Size: 68.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for revpimodio2-2.8.1-py3-none-any.whl
Algorithm Hash digest
SHA256 01c72040da52c7ffb384150b6ecec5c2ef6b1469293153ec1bc0673711492abc
MD5 3b59db253dff6fb346c79a97055a6065
BLAKE2b-256 021298ced1a4bfdcae966d0d54881a21c932fc60a7dc6e629949864b25cd6216

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