Metadata-Version: 2.1
Name: pencompy
Version: 0.0.2
Summary: Pencom relay controller over Ethernet
Home-page: https://github.com/dubnom/pencompy
Author: Michael Dubno
Author-email: michael@dubno.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# Pencom Package

Package to control Pencom serial relay boards through an Ethernet adaptor
using Python.

# Example:

    from time import sleep
    from pencompy import pencompy

    hub = pencompy( 'host.test.com', 4008 )

    # Turn the first relay on
    hub.set( 0, 0, True )

    # Pause for a second
    sleep(1.)

    # Turn the first relay off
    hub.set( 0, 0, False )

    # Close the interface
    hub.close()


