Compare commits
5 Commits
0.12.0
...
0.12.4-cha
| Author | SHA1 | Date | |
|---|---|---|---|
|
eb5532739c
|
|||
|
42411b1377
|
|||
|
b99158fd25
|
|||
|
d86e7eecc9
|
|||
|
8ab9db796c
|
36
apps/abstraction/vendors/hottis_led_stripe.py
vendored
36
apps/abstraction/vendors/hottis_led_stripe.py
vendored
@@ -1,4 +1,4 @@
|
||||
"""Hottis WiFi Relay vendor transformations."""
|
||||
"""Hottis LED Stripe vendor transformations."""
|
||||
|
||||
import logging
|
||||
from typing import Any
|
||||
@@ -6,33 +6,41 @@ from typing import Any
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
def transform_relay_to_vendor(payload: dict[str, Any]) -> str:
|
||||
"""Transform abstract relay payload to Hottis WiFi Relay format.
|
||||
def transform_light_to_vendor(payload: dict[str, Any]) -> str:
|
||||
"""Transform abstract relay payload to Hottis LED Stripe format.
|
||||
|
||||
Hottis WiFi Relay expects plain text 'on' or 'off' (not JSON).
|
||||
Hottis LED Stripe expects plain text 'on' or 'off' (not JSON).
|
||||
|
||||
Example:
|
||||
- Abstract: {'power': 'on'}
|
||||
- Hottis WiFi Relay: 'ON'
|
||||
- Hottis LED Stripe: 'ON'
|
||||
"""
|
||||
power = payload.get("power", "off").upper()
|
||||
return power
|
||||
|
||||
bri = 89.0 / 254.0
|
||||
r = int(255 * bri)
|
||||
g = int(103 * bri)
|
||||
b = int(25 * bri)
|
||||
|
||||
cmd = f"{r} {g} {b}" if payload.get("power", "off").lower() == "on" else "0 0 0"
|
||||
return cmd
|
||||
|
||||
|
||||
def transform_relay_to_abstract(payload: str) -> dict[str, Any]:
|
||||
"""Transform Hottis WiFi Relay relay payload to abstract format.
|
||||
def transform_light_to_abstract(payload: str) -> dict[str, Any]:
|
||||
"""Transform Hottis LED Stripe relay payload to abstract format.
|
||||
|
||||
Hottis WiFi Relay sends plain text 'on' or 'off'.
|
||||
Hottis LED Stripe sends plain text 'on' or 'off'.
|
||||
|
||||
Example:
|
||||
- Hottis WiFi Relay: 'ON'
|
||||
- Hottis LED Stripe: 'ON'
|
||||
- Abstract: {'power': 'on'}
|
||||
"""
|
||||
return {"power": payload.strip().lower()}
|
||||
|
||||
power = "on" if payload.strip() != "0 0 0" else "off"
|
||||
return {"power": power}
|
||||
|
||||
|
||||
# Registry of handlers for this vendor
|
||||
HANDLERS = {
|
||||
("relay", "to_vendor"): transform_relay_to_vendor,
|
||||
("relay", "to_abstract"): transform_relay_to_abstract,
|
||||
("light", "to_vendor"): transform_light_to_vendor,
|
||||
("light", "to_abstract"): transform_light_to_abstract,
|
||||
}
|
||||
|
||||
@@ -1054,3 +1054,27 @@ devices:
|
||||
topics:
|
||||
state: "IoT/RgbLedStripeKitchen/ColorCommand"
|
||||
set: "IoT/RgbLedStripeKitchen/ColorCommand"
|
||||
|
||||
- device_id: regallicht_flur
|
||||
homekit_aid: 84
|
||||
name: Regallicht Flur
|
||||
type: relay
|
||||
cap_version: "relay@1.0.0"
|
||||
technology: hottis_wifi_relay
|
||||
features:
|
||||
power: true
|
||||
topics:
|
||||
set: "deconzhelper/flurregallist"
|
||||
state: "deconzhelper/flurregallist"
|
||||
|
||||
- device_id: steckdose_strandkorb
|
||||
homekit_aid: 85
|
||||
name: Steckdose Strandkorb
|
||||
type: relay
|
||||
cap_version: "relay@1.0.0"
|
||||
technology: hottis_wago_modbus
|
||||
features:
|
||||
power: true
|
||||
topics:
|
||||
set: "dt1/coil/8"
|
||||
state: "dt1/ci/8"
|
||||
|
||||
@@ -265,6 +265,10 @@ rooms:
|
||||
title: Schranklicht vor Küche
|
||||
icon: 💡
|
||||
rank: 232
|
||||
- device_id: regallicht_flur
|
||||
title: Regallicht Flur
|
||||
icon: 💡
|
||||
rank: 233
|
||||
- device_id: sensor_flur
|
||||
title: Temperatur & Luftfeuchte
|
||||
icon: 🌡️
|
||||
@@ -345,6 +349,10 @@ rooms:
|
||||
title: Gartenlicht vorne
|
||||
icon: 💡
|
||||
rank: 291
|
||||
- device_id: steckdose_strandkorb
|
||||
title: Steckdose Strandkorb
|
||||
icon: 🔌
|
||||
rank: 292
|
||||
- id: garage
|
||||
name: Garage
|
||||
devices:
|
||||
|
||||
Reference in New Issue
Block a user