Skip to main content

Forked Python 3 asyncio package for interacting with Control4 systems and includes room support

Project description

pyControl4

pyControl4

PyPI versionDownloads

CIpdocPyPI Release

Note: This is a fork of the original pycontrol4 library. This version is a forked version that supports room manipulation

An asynchronous library to interact with Control4 systems through their built-in REST API. This is known to work on controllers with OS 2.10.1.544795-res and OS 3.0+.

For those who are looking for a pre-built solution for controlling their devices, this library is implemented in the official Home Assistant Control4 integration.

Usage example

from pyControl4.account import C4Account
from pyControl4.director import C4Director
from pyControl4.light import C4Light
import asyncio
import json

username = ""
password = ""

ip = "192.168.1.25"

"""Authenticate with Control4 account"""
account = C4Account(username, password)
asyncio.run(account.getAccountBearerToken())

"""Get and print controller name"""
accountControllers = asyncio.run(account.getAccountControllers())
print(accountControllers["controllerCommonName"])

"""Get bearer token to communicate with controller locally"""
director_bearer_token = asyncio.run(
    account.getDirectorBearerToken(accountControllers["controllerCommonName"])
)["token"]

"""Create new C4Director instance"""
director = C4Director(ip, director_bearer_token)

"""Print all devices on the controller"""
print(asyncio.run(director.getAllItemInfo()))

"""Create new C4Light instance"""
light = C4Light(director, 253)

"""Ramp light level to 10% over 10000ms"""
asyncio.run(light.rampToLevel(10, 10000))

"""Print state of light"""
print(asyncio.run(light.getState()))

Contributing

Pull requests are welcome! Please lint your Python code with flake8 and format it with Black.

Disclaimer

This library is not affiliated with or endorsed by Control4.

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

pyC4API-1.0.1.tar.gz (16.6 kB view details)

Uploaded Source

Built Distribution

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

pyC4API-1.0.1-py3-none-any.whl (20.3 kB view details)

Uploaded Python 3

File details

Details for the file pyC4API-1.0.1.tar.gz.

File metadata

  • Download URL: pyC4API-1.0.1.tar.gz
  • Upload date:
  • Size: 16.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.1

File hashes

Hashes for pyC4API-1.0.1.tar.gz
Algorithm Hash digest
SHA256 f8af4f05277d1021f88df889ebd0032962733272f52af60f38545deb2a32c5ec
MD5 5450925e0159e821fa15ee5e1a467034
BLAKE2b-256 976b43d3078d66761f3478bf4e12e41f9ec8df5948cf005e8ccb77bdd083c178

See more details on using hashes here.

File details

Details for the file pyC4API-1.0.1-py3-none-any.whl.

File metadata

  • Download URL: pyC4API-1.0.1-py3-none-any.whl
  • Upload date:
  • Size: 20.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.1

File hashes

Hashes for pyC4API-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 a1f073b91226a19c82dab83b5659bedcbd3d277ec9dfaa35922c59d375798373
MD5 f069515a54795c90d5db5c4af3daa16b
BLAKE2b-256 1fa4fbf186b4927564477ad12fc66c74b7df3473717043812430bc0e454e328b

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