InComfort: reorder configuration description (#17470)

The configuration settings were placed at the end of the page, after an automation example. For more consistency the configuration is now placed before the automation example.
This commit is contained in:
JayOne73 2021-04-25 14:01:27 +02:00 committed by GitHub
parent dd9d8efed4
commit 5c9d872a8b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,31 +34,6 @@ In addition, there is a **Sensor** for each of CV pressure, CV temperature, and
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.
## Automation
To send an alert if the CV pressure is too low or too high, consider the following example:
{% raw %}
```yaml
- alias: "Low CV Pressure Alert"
trigger:
platform: numeric_state
entity_id: sensor.cv_pressure
below: 1.0
action:
- service: notify.pushbullet_notifier
data:
title: "Warning: Low CH Pressure"
message: >-
{{ trigger.to_state.attributes.friendly_name }}
is low, {{ trigger.to_state.state }} bar.
```
{% endraw %}
Other properties are available via each device's attributes.
## Configuration
To set up this integration, add one of the following to your `configuration.yaml` file:
@ -101,3 +76,28 @@ password:
required: inclusive
type: string
{% endconfiguration %}
## Automation
To send an alert if the CV pressure is too low or too high, consider the following example:
{% raw %}
```yaml
- alias: "Low CV Pressure Alert"
trigger:
platform: numeric_state
entity_id: sensor.cv_pressure
below: 1.0
action:
- service: notify.pushbullet_notifier
data:
title: "Warning: Low CH Pressure"
message: >-
{{ trigger.to_state.attributes.friendly_name }}
is low, {{ trigger.to_state.state }} bar.
```
{% endraw %}
Other properties are available via each device's attributes.