Metadata-Version: 2.1
Name: pyhomeworks
Version: 0.0.6
Summary: Lutron Homeworks Series 4 and 8 interface over Ethernet
Home-page: https://github.com/dubnom/pyhomeworks
Author: Michael Dubno
Author-email: michael@dubno.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# RFK101 Package

Package to connect to Lutron Homeworks Series-4 and Series-8 systems.
The controller is connected by an RS232 port to an Ethernet adaptor (NPort).

# Example:

    from time import sleep
    from pyhomeworks import Homeworks
    
    def callback(msg,data):
        print(msg,data)

    hw = Homeworks( 'host.test.com', 4008, callback )

    # Sleep for 10 seconds waiting for a callback
    sleep(10.)

    # Close the interface
    hw.close()
