From 5c9d872a8b605e71c0106f913245f6a93732ce90 Mon Sep 17 00:00:00 2001 From: JayOne73 <38006834+JayOne73@users.noreply.github.com> Date: Sun, 25 Apr 2021 14:01:27 +0200 Subject: [PATCH] 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. --- source/_integrations/incomfort.markdown | 50 ++++++++++++------------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/source/_integrations/incomfort.markdown b/source/_integrations/incomfort.markdown index 8fed80e40c7..452fd24e1b5 100644 --- a/source/_integrations/incomfort.markdown +++ b/source/_integrations/incomfort.markdown @@ -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.