5f01411780
Initial snapshot of Home Assistant config (HAOS 2026.4.4)
prior to dashboard restructuring and helper YAML migration.
Pre-commit cleanup applied:
- Removed blueprints/switch_manager/ (9.4 MB stale, component already gone)
- Removed .storage/switch_manager
- Removed home-assistant.log.{1,old,fault}
- Removed zigbee2mqtt/configuration_backup_v{1..4}.yaml
- Removed zigbee2mqtt/database.db.tmp.2024-09-27 (1.5y old)
- Created empty themes/ to satisfy configuration.yaml include
.gitignore uses allowlist strategy for .storage/ to keep
all tokens, keys, and PINs out of version control.
40 lines
1.1 KiB
Python
40 lines
1.1 KiB
Python
"""
|
|
Create controller-based automations with ease to control your home devices and scenes.
|
|
|
|
https://github.com/xaviml/controllerx
|
|
"""
|
|
|
|
from cx_core import (
|
|
Controller,
|
|
CoverController,
|
|
LightController,
|
|
MediaPlayerController,
|
|
SwitchController,
|
|
Z2MLightController,
|
|
)
|
|
from cx_devices.adeo import *
|
|
from cx_devices.aqara import *
|
|
from cx_devices.aurora import *
|
|
from cx_devices.homematic import *
|
|
from cx_devices.ikea import *
|
|
from cx_devices.legrand import *
|
|
from cx_devices.linkind import *
|
|
from cx_devices.livarno import *
|
|
from cx_devices.lutron import *
|
|
from cx_devices.muller_licht import *
|
|
from cx_devices.namron import *
|
|
from cx_devices.osram import *
|
|
from cx_devices.philips import *
|
|
from cx_devices.prolight import *
|
|
from cx_devices.rgb_genie import *
|
|
from cx_devices.robb import *
|
|
from cx_devices.sengled import *
|
|
from cx_devices.shelly import *
|
|
from cx_devices.smartkontakten import *
|
|
from cx_devices.smartthings import *
|
|
from cx_devices.sonoff import *
|
|
from cx_devices.tasmota import *
|
|
from cx_devices.terncy import *
|
|
from cx_devices.trust import *
|
|
from cx_devices.tuya import *
|