Disable incomfort diagnostics sensors by default (#36996)

This commit is contained in:
Jan Bouwhuis 2025-01-19 19:28:26 +01:00 committed by GitHub
parent c63bdc5db9
commit d4f08ecbdd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -30,8 +30,6 @@ The boiler is represented as a **Water heater** device. It will report the boile
Note that the `current_temperature` will switch between the CV (circulating volume) and Tap temperatures according to the current operating mode of the boiler. If the boiler is neither pumping nor tapping, it will be reported as the higher of the two.
In addition, there is a **Sensor** for each of CV pressure, CV temperature, and Tap temperature, and a **Binary sensor** that will be `on` if there is a fault with the boiler (the fault code will be a state attribute).
### Rooms
Any room thermostats (there can be 0, 1 or 2) are represented as **Climate** devices. They will report the thermostat's `temperature` (setpoint, target temperature) and `current_temperature` and the setpoint can be changed.
@ -52,6 +50,20 @@ Some older room thermostats might report the wrong setpoint when the setpoint is
{% include integrations/option_flow.md %}
### Sensors for diagnostics
Note that **all** sensors are disabled by default.
- **Sensors**
- Boiler Pressure: Indicates the boilers pressure.
- Boiler Temperature: Indicates the central heating temperature.
- Boiler Tap temperature: Indicates the tap water temperature.
- **Binary sensors**
- Boiler Burner: Indicates if the burner is on.
- Boiler Fault: Indicates if there is a problem. The fault code is set as an attribute.
- Boiler Hot water tap: Indicates if the hot water tap is running.
- Boiler Pump: Indicate the pump is running for cental heating.
## Automation
To send an alert if the CV pressure is too low or too high, consider the following example:
@ -62,7 +74,7 @@ To send an alert if the CV pressure is too low or too high, consider the followi
- alias: "Low CV Pressure Alert"
triggers:
- trigger: numeric_state
entity_id: sensor.cv_pressure
entity_id: sensor.boiler_pressure
below: 1.0
actions:
- action: notify.pushbullet_notifier