Compare commits

...

4 Commits

Author SHA1 Message Date
851d4a5581 add licht dachboden
All checks were successful
ci/woodpecker/tag/build/1 Pipeline was successful
ci/woodpecker/tag/build/3 Pipeline was successful
ci/woodpecker/tag/build/2 Pipeline was successful
ci/woodpecker/tag/build/5 Pipeline was successful
ci/woodpecker/tag/build/4 Pipeline was successful
ci/woodpecker/tag/build/6 Pipeline was successful
ci/woodpecker/tag/namespace Pipeline was successful
ci/woodpecker/tag/build/7 Pipeline was successful
ci/woodpecker/tag/config Pipeline was successful
ci/woodpecker/tag/deploy/1 Pipeline was successful
ci/woodpecker/tag/deploy/2 Pipeline was successful
ci/woodpecker/tag/deploy/3 Pipeline was successful
ci/woodpecker/tag/deploy/5 Pipeline was successful
ci/woodpecker/tag/deploy/4 Pipeline was successful
ci/woodpecker/tag/deploy/6 Pipeline was successful
ci/woodpecker/tag/ingress Pipeline was successful
2026-02-12 22:54:08 +01:00
d0db94280d aid changed for home app
All checks were successful
ci/woodpecker/tag/build/1 Pipeline was successful
ci/woodpecker/tag/build/2 Pipeline was successful
ci/woodpecker/tag/build/3 Pipeline was successful
ci/woodpecker/tag/build/5 Pipeline was successful
ci/woodpecker/tag/build/4 Pipeline was successful
ci/woodpecker/tag/build/6 Pipeline was successful
ci/woodpecker/tag/namespace Pipeline was successful
ci/woodpecker/tag/build/7 Pipeline was successful
ci/woodpecker/tag/config Pipeline was successful
ci/woodpecker/tag/deploy/2 Pipeline was successful
ci/woodpecker/tag/ingress Pipeline was successful
ci/woodpecker/tag/deploy/1 Pipeline was successful
ci/woodpecker/tag/deploy/3 Pipeline was successful
ci/woodpecker/tag/deploy/4 Pipeline was successful
ci/woodpecker/tag/deploy/5 Pipeline was successful
ci/woodpecker/tag/deploy/6 Pipeline was successful
2026-02-06 15:06:31 +01:00
f4b52af78e change regal licht kueche
All checks were successful
ci/woodpecker/tag/build/1 Pipeline was successful
ci/woodpecker/tag/build/3 Pipeline was successful
ci/woodpecker/tag/build/2 Pipeline was successful
ci/woodpecker/tag/build/4 Pipeline was successful
ci/woodpecker/tag/build/6 Pipeline was successful
ci/woodpecker/tag/build/7 Pipeline was successful
ci/woodpecker/tag/build/5 Pipeline was successful
ci/woodpecker/tag/namespace Pipeline was successful
ci/woodpecker/tag/config Pipeline was successful
ci/woodpecker/tag/deploy/1 Pipeline was successful
ci/woodpecker/tag/deploy/2 Pipeline was successful
ci/woodpecker/tag/deploy/5 Pipeline was successful
ci/woodpecker/tag/deploy/4 Pipeline was successful
ci/woodpecker/tag/deploy/6 Pipeline was successful
ci/woodpecker/tag/deploy/3 Pipeline was successful
ci/woodpecker/tag/ingress Pipeline was successful
2026-02-06 14:57:53 +01:00
6eea13661e fix window setback logic for multiple windows, fix 2
All checks were successful
ci/woodpecker/tag/build/5 Pipeline was successful
ci/woodpecker/tag/build/6 Pipeline was successful
ci/woodpecker/tag/namespace Pipeline was successful
ci/woodpecker/tag/config Pipeline was successful
ci/woodpecker/tag/build/2 Pipeline was successful
ci/woodpecker/tag/build/4 Pipeline was successful
ci/woodpecker/tag/build/7 Pipeline was successful
ci/woodpecker/tag/build/1 Pipeline was successful
ci/woodpecker/tag/build/3 Pipeline was successful
ci/woodpecker/tag/deploy/4 Pipeline was successful
ci/woodpecker/tag/deploy/2 Pipeline was successful
ci/woodpecker/tag/deploy/1 Pipeline was successful
ci/woodpecker/tag/deploy/3 Pipeline was successful
ci/woodpecker/tag/deploy/6 Pipeline was successful
ci/woodpecker/tag/deploy/5 Pipeline was successful
ci/woodpecker/tag/ingress Pipeline was successful
2026-01-13 16:07:05 +01:00
2 changed files with 53 additions and 27 deletions

View File

@@ -62,6 +62,24 @@ class WindowSetbackRule(Rule):
def __get_redis_key_rule_state(rule_id: str) -> str:
"""Get Redis key for overall rule state"""
return f"rule:{rule_id}:state"
@staticmethod
async def __redis_get(ctx: RuleContext, key: str) -> Any:
"""Helper to get value from Redis"""
v = await ctx.redis.get(key)
ctx.logger.debug(f"Redis GET {key} -> {v}")
return v
@staticmethod
async def __redis_set(ctx: RuleContext, key: str, value: Any) -> None:
"""Helper to set value in Redis"""
ctx.logger.debug(f"Redis SET {key} = {value}")
await ctx.redis.set(key, value)
@staticmethod
async def __redis_delete(ctx: RuleContext, key: str) -> None:
"""Helper to delete key from Redis"""
ctx.logger.debug(f"Redis DEL {key}")
await ctx.redis.delete(key)
def __init__(self):
super().__init__()
@@ -140,41 +158,39 @@ class WindowSetbackRule(Rule):
"""Handle contact sensor state change."""
device_id = evt['device_id']
contact_state = evt['payload'].get('contact') # "open" or "closed"
event_ts = evt.get('ts', ctx.now().isoformat())
if not contact_state:
ctx.logger.warning(f"Contact event missing 'contact' field: {evt}")
return
contact_state_key = WindowSetbackRule.__get_redis_key_contact_state(desc.id, device_id)
await ctx.redis.set(contact_state_key, '1' if contact_state == 'open' else '0')
await WindowSetbackRule.__redis_set(ctx, contact_state_key, '1' if contact_state == 'open' else '0')
# Check if any contact is open
is_open = False
for contact_id in desc.objects.get('contacts', []):
state_key = WindowSetbackRule.__get_redis_key_contact_state(desc.id, contact_id)
state_val = await ctx.redis.get(state_key)
state_val = await WindowSetbackRule.__redis_get(ctx, state_key)
if state_val == '1':
is_open = True
break
rule_state_key = WindowSetbackRule.__get_redis_key_rule_state(desc.id)
current_rule_state = await ctx.redis.get(rule_state_key)
current_rule_state = await WindowSetbackRule.__redis_get(ctx, rule_state_key)
if is_open and current_rule_state != '1':
# At least one contact is open, and we are not already in eco mode
await self._set_eco_mode(desc, ctx)
await ctx.redis.set(rule_state_key, '1')
await WindowSetbackRule.__redis_set(ctx, rule_state_key, '1')
elif not is_open and current_rule_state != '0':
# All contacts are closed, and we are currently in eco mode
await self._unset_eco_mode(desc, ctx)
await ctx.redis.set(rule_state_key, '0')
await WindowSetbackRule.__redis_set(ctx, rule_state_key, '0')
async def _set_eco_mode(self, desc: RuleDescriptor, ctx: RuleContext) -> None:
"""Set thermostats to eco temperature when window opens."""
eco_target = desc.params.get('eco_target', 7.0)
target_thermostats = desc.objects.get('thermostats', [])
ttl_secs = desc.params.get('previous_target_ttl_secs', 86400)
ctx.logger.info(
f"Rule {desc.id}: At least one window is opened, setting {len(target_thermostats)} "
@@ -184,12 +200,12 @@ class WindowSetbackRule(Rule):
# FIRST: Save current target temperatures as "previous" (before we change them!)
for thermo_id in target_thermostats:
current_key = WindowSetbackRule.__get_redis_key_current_target(desc.id, thermo_id)
current_temp_str = await ctx.redis.get(current_key)
current_temp_str = await WindowSetbackRule.__redis_get(ctx, current_key)
if current_temp_str:
# Save current as previous (with TTL)
prev_key = WindowSetbackRule.__get_redis_key_previous_target(desc.id, thermo_id)
await ctx.redis.set(prev_key, current_temp_str, ttl_secs=ttl_secs)
await WindowSetbackRule.__redis_set(ctx, prev_key, current_temp_str)
ctx.logger.debug(
f"Saved previous target for {thermo_id}: {current_temp_str}°C"
)
@@ -219,7 +235,7 @@ class WindowSetbackRule(Rule):
# Restore previous temperatures
for thermo_id in target_thermostats:
prev_key = WindowSetbackRule.__get_redis_key_previous_target(desc.id, thermo_id)
prev_temp_str = await ctx.redis.get(prev_key)
prev_temp_str = await WindowSetbackRule.__redis_get(ctx, prev_key)
if prev_temp_str:
try:
@@ -228,7 +244,7 @@ class WindowSetbackRule(Rule):
ctx.logger.debug(f"Restored {thermo_id} to {prev_temp}°C")
# Delete the previous key after restoring
await ctx.redis.delete(prev_key)
await WindowSetbackRule.__redis_delete(ctx, prev_key)
except Exception as e:
ctx.logger.error(f"Failed to restore {thermo_id}: {e}")
else:
@@ -260,9 +276,7 @@ class WindowSetbackRule(Rule):
# Store current target (always update, even if it's the eco temperature)
current_key = WindowSetbackRule.__get_redis_key_current_target(desc.id, device_id)
ttl_secs = desc.params.get('previous_target_ttl_secs', 86400)
await ctx.redis.set(current_key, str(current_target), ttl_secs=ttl_secs)
await WindowSetbackRule.__redis_set(ctx, current_key, str(current_target))
ctx.logger.debug(
f"Rule {desc.id}: Updated current target for {device_id}: {current_target}°C"

View File

@@ -992,18 +992,6 @@ devices:
state: "zigbee2mqtt/0x64028ffffe50e79e"
set: "zigbee2mqtt/0x64028ffffe50e79e/set"
- device_id: regallicht_kueche
homekit_aid: 83
name: Regallicht
type: light
cap_version: "relay@1.0.0"
technology: hottis_led_stripe
features:
power: true
topics:
state: "IoT/RgbLedStripeKitchen/ColorCommand"
set: "IoT/RgbLedStripeKitchen/ColorCommand"
- device_id: regallicht_flur
homekit_aid: 84
name: Regallicht Flur
@@ -1186,4 +1174,28 @@ devices:
topics:
state: "test/thermostat1/state"
set: "test/thermostat1/set"
- device_id: regallicht_kueche
homekit_aid: 100
name: Regallicht
type: light
cap_version: "light@1.2.0"
technology: zigbee2mqtt
features:
power: true
brightness: true
topics:
state: "zigbee2mqtt/0x001788010d0ff4ba"
set: "zigbee2mqtt/0x001788010d0ff4ba/set"
- device_id: licht_dachboden
homekit_aid: 101
name: Dachboden
type: relay
cap_version: "relay@1.0.0"
technology: hottis_wago_modbus
features:
power: true
topics:
set: "pulsegen/command/6/17"
state: "pulsegen/status/6"