Local Siegenia support for Home Assistant, focused on MHS-family controllers and a practical, polished Home Assistant experience.
This custom integration connects Siegenia window controllers to Home Assistant using the local device API.
It is designed to be:
- local and private
- responsive
- GUI-configurable
- friendly for dashboards, automations, and daily use
- config flow setup
- cover control for open, close, stop, and mode-style actions
- sensors, binary sensors, update entity, buttons, numbers, and selects
- device automations and helpful services
- diagnostics and push-style behavior where available
- Open HACS.
- Add this repository as a custom repository of type
Integration. - Install
Siegenia. - Restart Home Assistant.
- Add
SiegeniafromSettings -> Devices & services.
- Copy the
custom_components/siegeniafolder into your Home Assistantconfig/custom_componentsdirectory. - Restart Home Assistant.
- Add the integration from
Settings -> Devices & services.
You will usually need:
- host or IP
- username
- password
- default secure WebSocket connection settings
The integration also includes options for reconnect behavior, discovery helpers, polling, heartbeat, warnings, and dashboard-oriented behavior.
- window control through Home Assistant
cover - extra mode actions such as gap vent, close without lock, and stop over
- optional opening lock behavior
- timer support
- warning events and notifications
- blueprints and dashboard examples
This repository now ships two usable layers:
siegenia_clientfor direct Python access to the local Siegenia controller API- the Home Assistant integration in
custom_components/siegenia
Library docs: docs/python-library.md
Runnable example: examples/python_client.py
Example:
import asyncio
from siegenia_client import SiegeniaClient
async def main() -> None:
client = SiegeniaClient("192.168.1.30")
await client.connect()
try:
...
finally:
await client.disconnect()
asyncio.run(main())That keeps the local protocol layer reusable for scripts or tooling while the Home Assistant integration stays focused on setup, entities, and automations.
python -m pip install -e .[test]
python -m compileall siegenia_client custom_components tests examples
pytestThere is also a latest-stack test path documented in the repo for newer Home Assistant and Python versions.
- Support notes:
docs/SUPPORT.md - Releasing notes:
docs/RELEASING.md - Source: GitHub Repository
