LCN-PCK library
Project description
pypck - Asynchronous LCN-PCK library written in Python
Overview
pypck is an open source library written in Python which allows the connection to the LCN (local control network) system. It uses the vendor protocol LCN-PCK. To get started an unused license of the coupling software LCN-PCHK and a hardware coupler is necessary.
pypck is used by the LCN integration of the Home Assistant project.
Example
"""Example for switching an output port of module 10 on and off."""
import asyncio
from pypck.connection import PchkConnectionManager
from pypck.lcn_addr import LcnAddr
async def main():
"""Connect to PCK host, get module object and switch output port on and off."""
async with PchkConnectionManager(
"192.168.2.41",
4114,
username="lcn",
password="lcn",
settings={"SK_NUM_TRIES": 0},
) as pck_client:
module = pck_client.get_device_connection(LcnAddr(0, 10, False))
await module.dim_output(0, 100, 0)
await asyncio.sleep(1)
await module.dim_output(0, 0, 0)
asyncio.run(main())
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pypck-0.9.10.tar.gz.
File metadata
- Download URL: pypck-0.9.10.tar.gz
- Upload date:
- Size: 53.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e459b34d166b01844ef19d8048bc4af383e1e77a71b693a6b43e63495167b4b3
|
|
| MD5 |
cddbe2a0f09a44ed9f98202f353d1a77
|
|
| BLAKE2b-256 |
1d43c03094dbff551f5631290900f8b966a1ba67949e5cadebbeb230688ee7c1
|
File details
Details for the file pypck-0.9.10-py3-none-any.whl.
File metadata
- Download URL: pypck-0.9.10-py3-none-any.whl
- Upload date:
- Size: 44.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba333ee27e55472557a6cadb636f8e35794bd2d1a4c0864c8a2e6e335cbbeb87
|
|
| MD5 |
7da50147f74b729eded73ed3b2fbdcbf
|
|
| BLAKE2b-256 |
fed1302bad91ad4ef97630a1ebd8806717849a40fc2bb34e5d47597069c72b47
|