215 lines
10 KiB
Python
215 lines
10 KiB
Python
"""Boilers, heating & water treatment.
|
|
|
|
Data module of the suggested-setups signature catalog — see
|
|
``helpers/signatures/_model.py`` for the direction semantics and the
|
|
method contract (every entry cites and is verified against the
|
|
integration's source; drift-probed weekly)."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from ._model import ConsumableSignature, IntegrationSignature
|
|
|
|
SIGNATURES: dict[str, IntegrationSignature] = {
|
|
"vicare": IntegrationSignature(
|
|
name="Viessmann ViCare",
|
|
verified="2026-07-17 (filter) / 2026-07-18 (burner) @ home-assistant/core dev + openviess/PyViCare master",
|
|
source=(
|
|
"home-assistant/core homeassistant/components/vicare/sensor.py "
|
|
"(GLOBAL_SENSORS translation_key 'filter_remaining_hours', UnitOfTime.HOURS, "
|
|
"disabled-by-default; PyViCare ventilation.filter.runtime.remainingHours; "
|
|
"BURNER_SENSORS/COMPRESSOR_SENSORS 'burner_hours'/'compressor_hours', "
|
|
"UnitOfTime.HOURS, TOTAL_INCREASING lifetime → usage_delta)."
|
|
),
|
|
tasks=(
|
|
ConsumableSignature(("filter_remaining_hours",), "Replace Filter", "duration_left"),
|
|
# Boiler/heat-pump service by accumulated operating hours since the
|
|
# last service — the counters are lifetime (no reset), which is
|
|
# exactly what the delta-baseline trigger models.
|
|
ConsumableSignature(
|
|
("burner_hours", "compressor_hours"),
|
|
"Annual Inspection",
|
|
"usage_delta",
|
|
delta_units=2000,
|
|
),
|
|
),
|
|
),
|
|
"bosch": IntegrationSignature(
|
|
name="Bosch/Buderus heating",
|
|
verified="2026-07-18 @ bosch-thermostat/home-assistant-bosch-custom-component master + live RC300 registry",
|
|
source=(
|
|
"bosch-thermostat custom component: sensors are DYNAMIC (named "
|
|
"from the device's XMPP data, sensor/base.py builds names without "
|
|
"a device prefix → entity ids like sensor.system_pressure; no "
|
|
"translation_keys). Key verified against a live Buderus RC300 "
|
|
"registry; matched via the exact-object-id pattern."
|
|
),
|
|
tasks=(
|
|
# Heating-loop pressure: refill water when it drops below 1 bar;
|
|
# topping up raises the value back (auto-resolve).
|
|
ConsumableSignature(("system_pressure",), "Refill Heating Water", "value_below", delta_units=1),
|
|
),
|
|
),
|
|
# ─── Research round 4 (2026-07-19): boiler pressure, HRV filters, ───
|
|
# ─── purifiers, espresso, pet tech, Klipper ─────────────────────────
|
|
"opentherm_gw": IntegrationSignature(
|
|
name="OpenTherm Gateway",
|
|
verified="2026-07-19 @ core/dev opentherm_gw/sensor.py",
|
|
source=(
|
|
"core opentherm_gw: tk 'central_heating_pressure', BAR, MEASUREMENT — generic for EVERY OpenTherm-connected boiler."
|
|
),
|
|
tasks=(ConsumableSignature(("central_heating_pressure",), "Refill Heating Water", "value_below", delta_units=1),),
|
|
),
|
|
"plugwise": IntegrationSignature(
|
|
name="Plugwise (Anna/Adam)",
|
|
verified="2026-07-19 @ core/dev plugwise/sensor.py",
|
|
source="core plugwise: tk 'water_pressure', BAR, MEASUREMENT (boiler loop).",
|
|
tasks=(ConsumableSignature(("water_pressure",), "Refill Heating Water", "value_below", delta_units=1),),
|
|
),
|
|
"incomfort": IntegrationSignature(
|
|
name="Intergas InComfort",
|
|
verified="2026-07-19 @ core/dev incomfort/sensor.py",
|
|
source=(
|
|
"core incomfort: key 'cv_pressure', BAR, MEASUREMENT. NOTE: "
|
|
"entity_registry_enabled_default=False — the suggestion appears "
|
|
"once the user enables the sensor."
|
|
),
|
|
tasks=(ConsumableSignature(("cv_pressure",), "Refill Heating Water", "value_below", delta_units=1),),
|
|
),
|
|
"atag": IntegrationSignature(
|
|
name="ATAG One",
|
|
verified="2026-07-19 @ core/dev atag/sensor.py",
|
|
source=(
|
|
"core atag: legacy name-based sensors ('CH Water Pressure' → "
|
|
"object id ch_water_pressure), BAR — matched via suffix or the "
|
|
"exact-object-id pattern."
|
|
),
|
|
tasks=(ConsumableSignature(("ch_water_pressure",), "Refill Heating Water", "value_below", delta_units=1),),
|
|
),
|
|
"bwt_perla": IntegrationSignature(
|
|
name="BWT Perla",
|
|
verified="2026-07-19 @ dkarv/ha-bwt-perla main sensor.py (HACS default)",
|
|
source=(
|
|
"HACS bwt_perla (dkarv): tk 'regenerativ_level' (salt reserve, "
|
|
"PERCENTAGE) and tk 'regenerativ_days' (days of salt left, "
|
|
"UnitOfTime.DAYS) — refilling raises both (auto-resolve)."
|
|
),
|
|
tasks=(
|
|
ConsumableSignature(("regenerativ_level",), "Refill Softener Salt", "percent_left"),
|
|
ConsumableSignature(("regenerativ_days",), "Refill Softener Salt", "duration_left", below_hours=168),
|
|
),
|
|
),
|
|
"ecowater_softener": IntegrationSignature(
|
|
name="EcoWater softener",
|
|
verified="2026-07-19 @ barleybobs/homeassistant-ecowater-softener master (HACS default)",
|
|
source=(
|
|
"HACS ecowater_softener (barleybobs): key 'salt_level_percentage' "
|
|
"(PERCENTAGE) and key 'out_of_salt_days' (days) — name-style "
|
|
"entities, suffix-matched."
|
|
),
|
|
tasks=(
|
|
ConsumableSignature(("salt_level_percentage",), "Refill Softener Salt", "percent_left"),
|
|
ConsumableSignature(("out_of_salt_days",), "Refill Softener Salt", "duration_left", below_hours=168),
|
|
),
|
|
),
|
|
"wolflink": IntegrationSignature(
|
|
name="Wolf SmartSet",
|
|
verified="2026-07-19 @ core/dev wolflink/sensor.py",
|
|
source="core wolflink: key 'pressure', BAR (heating loop).",
|
|
tasks=(ConsumableSignature(("pressure",), "Refill Heating Water", "value_below", delta_units=1),),
|
|
),
|
|
"palazzetti": IntegrationSignature(
|
|
name="Palazzetti pellet stove",
|
|
verified="2026-07-19 @ core/dev palazzetti/sensor.py",
|
|
source=(
|
|
"core palazzetti: tk 'pellet_quantity' (KILOGRAMS consumed, "
|
|
"cumulative) -> usage_delta; ash-pan cadence ~100 kg of pellets "
|
|
"(editorial: roughly weekly in season; manuals prescribe "
|
|
"calendar-based cleaning). 'pellet_level' is a CM tank gauge — "
|
|
"inventory, not wear; skipped."
|
|
),
|
|
tasks=(ConsumableSignature(("pellet_quantity",), "Empty Ash Pan", "usage_delta", delta_units=100),),
|
|
),
|
|
"mypyllant": IntegrationSignature(
|
|
name="Vaillant (myVAILLANT)",
|
|
verified="2026-07-19 @ signalkraft/mypyllant-component main sensor.py",
|
|
source=(
|
|
"HACS mypyllant: SystemWaterPressureSensor (name '... System "
|
|
"Water Pressure' -> suffix system_water_pressure) and the "
|
|
"device-level operational-data variant (suffix water_pressure), "
|
|
"both BAR — matched any-low."
|
|
),
|
|
tasks=(
|
|
ConsumableSignature(
|
|
("system_water_pressure", "water_pressure"),
|
|
"Refill Heating Water",
|
|
"value_below",
|
|
delta_units=1,
|
|
),
|
|
),
|
|
),
|
|
"grohe_smarthome": IntegrationSignature(
|
|
name="Grohe Blue",
|
|
verified="2026-07-19 @ flo-schilli/ha-grohe_smarthome main (HACS default)",
|
|
source=(
|
|
"HACS grohe_smarthome, yaml-driven name-derived entities "
|
|
"(config/config.yaml, GroheBlueHome/GroheBlueProf): 'Remaining "
|
|
"Filter' (%) and 'Remaining CO2' (%) — reset by the device's own "
|
|
"filter/CO2 reset commands. The sibling 'Remaining Filter (App)' "
|
|
"slugs to _remaining_filter_app and cannot clash with the exact "
|
|
"_remaining_filter suffix."
|
|
),
|
|
tasks=(
|
|
ConsumableSignature(("remaining_filter",), "Replace Water Filter", "percent_left"),
|
|
ConsumableSignature(("remaining_co2",), "Replace CO2 Bottle", "percent_left"),
|
|
),
|
|
),
|
|
"iqua_softener": IntegrationSignature(
|
|
name="iQua softener",
|
|
verified="2026-07-20 @ mutilator/homeassistant-iqua-softener master sensor.py (HACS default)",
|
|
source=(
|
|
"HACS iqua_softener: 'Salt level' (PERCENTAGE, name-style -> "
|
|
"suffix _salt_level). 'Out of salt estimated day' is a DATE "
|
|
"sensor - parked for the date direction."
|
|
),
|
|
tasks=(ConsumableSignature(("salt_level",), "Refill Softener Salt", "percent_left"),),
|
|
),
|
|
"fumis": IntegrationSignature(
|
|
name="Fumis (pellet stoves)",
|
|
verified="2026-07-20 @ home-assistant/core dev",
|
|
source=(
|
|
"core fumis: tk 'time_to_service' (DURATION, HOURS remaining) — "
|
|
"the controller's own service countdown for Fumis-driven pellet "
|
|
"stoves/boilers."
|
|
),
|
|
tasks=(ConsumableSignature(("time_to_service",), "Annual Service", "duration_left"),),
|
|
),
|
|
"rehlko": IntegrationSignature(
|
|
name="Rehlko / Kohler generators",
|
|
verified="2026-07-20 @ home-assistant/core dev",
|
|
source=(
|
|
"core rehlko: tk 'runtime_since_last_maintenance' (HOURS since "
|
|
"the last maintenance, resets when maintenance is recorded) → "
|
|
"usage_above at 100 h — Kohler's oil-change interval (every "
|
|
"100 run-hours or annually). An 'oil_pressure' problem binary "
|
|
"also exists (adoption path)."
|
|
),
|
|
tasks=(ConsumableSignature(("runtime_since_last_maintenance",), "Oil Service", "usage_above", above_hours=100),),
|
|
),
|
|
"aquacell": IntegrationSignature(
|
|
name="AquaCell softener",
|
|
verified="2026-07-20 @ home-assistant/core dev",
|
|
source=(
|
|
"core aquacell: tk 'salt_left_side_percentage' and "
|
|
"'salt_right_side_percentage' (PERCENTAGE) — dual salt tanks, "
|
|
"matched any-low."
|
|
),
|
|
tasks=(
|
|
ConsumableSignature(
|
|
("salt_left_side_percentage", "salt_right_side_percentage"),
|
|
"Refill Softener Salt",
|
|
"percent_left",
|
|
),
|
|
),
|
|
),
|
|
}
|