Skip to main content

RFXCOM RFXtrx Library for Python 3.3+

Project description

Build Status Coverage PyPI Version PyPI Downloads

A Python library for working with your RFXTrx for automation projects.

This library is designed to work with Python 3.3+ [1] and asyncio (but other transports can be implemented). Currently it is primarily used by the home project, a dashboard for managing and visualising your home automation devices.

This library is relatively new and thus the number of devices are limited to those that @d0ugal owns. This means, that the current list of fully supported protocols are:

  1. Status Packets from the RFXTrx itself.

  2. Energy usage sensors (such as the Owl CM119/160 and Owl CM180)

  3. Temperature and humidity sensors (such as the Oregon THGN132)

  4. Lighting and power control devices from LightwaveRF

If you want to use a device and you don’t think its supported or you are unsure then please open an issue.

Installation

It is recommended that you get the latest version from PyPI with pip:

pip install rfxcom

However, if you want to grab the latest development version you can download the repository directly from github and run python setup.py install in the root of the repository.

Documentation

View the documentation on Read The Docs.

Quick Example

The following example shows some basic usage of this library, it sets up the asyncio event loop, points the library to the serial device path and attaches a simple handler function which prints out information about all the packets it receives. For example, see what it will output for energy usage sensors.:

from asyncio import get_event_loop
from rfxcom.transport import AsyncioTransport

dev_name = '/dev/serial/by-id/usb-RFXCOM_RFXtrx433_A1WYT9NA-if00-port0'
loop = get_event_loop()

def handler(packet):
    # Print out the packet - the string representation will show us the type.
    print(packet)

    # Each packet will have a dictionary which contains parsed data.
    print(packet.data)

    # You can access the raw bytes from the packet too.
    print(packet.raw)

try:
    rfxcom = AsyncioTransport(dev_name, loop, callback=handler)
    loop.run_forever()
finally:
    loop.close()

Contributing

If you would like to contribute to python-rfxcom, you will need to use tox to run the tests. This will test against Python 3.3, Python 3.4, pyflakes for code linting and build the documentation. To do this, you simply need to install tox and then call tox from the root of the python-rfxcom git repository.

pip install tox
tox

Don’t worry if you can’t test against Python 3.3 and Python 3.4 locally, many people will only have one installed. We use the brilliant Travis CI to verify all pull requests.

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

rfxcom-0.4.0.tar.gz (14.2 kB view details)

Uploaded Source

Built Distribution

rfxcom-0.4.0-py2-none-any.whl (17.8 kB view details)

Uploaded Python 2

File details

Details for the file rfxcom-0.4.0.tar.gz.

File metadata

  • Download URL: rfxcom-0.4.0.tar.gz
  • Upload date:
  • Size: 14.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for rfxcom-0.4.0.tar.gz
Algorithm Hash digest
SHA256 78a729e0a0b0453ea653937ada5052c7a00228fd101bdab8828bcfc52d6cf1ae
MD5 d293082d321539cc8566a578a745a490
BLAKE2b-256 eb669eaf01685814f05c0fd9d40d61216b95094a2f387fe3cebc946b75ab54fd

See more details on using hashes here.

Provenance

File details

Details for the file rfxcom-0.4.0-py2-none-any.whl.

File metadata

File hashes

Hashes for rfxcom-0.4.0-py2-none-any.whl
Algorithm Hash digest
SHA256 83181d86abeefeca97f807e3578a5ce1f587e03d296c7b66b984ff7ee2e04d09
MD5 f28e2f0f78984e969b7cd8a9b1cca818
BLAKE2b-256 72c25d706fdd124ce4b4cafff2ce2c88037193eb454b59b4360b017f6e27a260

See more details on using hashes here.

Provenance

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