From d5377b2ea115d5f1451f8facda3af3bc66678e98 Mon Sep 17 00:00:00 2001 From: jimmyd-be <34766203+jimmyd-be@users.noreply.github.com> Date: Thu, 7 Dec 2023 10:52:16 +0100 Subject: [PATCH] Add Renson services (#27767) * add Renson endura delta integration documentation * Fixed text lint error in renson endura delta * Changed metadata header * Changed integration domain to renson * Removed manual configuration Changed intro a bit * Add services to renson page * removed service that will be implemented as a number sensor * Remove sync_time from service documentation * removed set manual level * Fix merge confict changes * Removed set_day_night_time + change keys --- source/_integrations/renson.markdown | 35 ++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/source/_integrations/renson.markdown b/source/_integrations/renson.markdown index 7ddb7384c16..bf021d6f550 100644 --- a/source/_integrations/renson.markdown +++ b/source/_integrations/renson.markdown @@ -25,3 +25,38 @@ ha_integration_type: integration The Renson integration pulls in data from the Renson Endura delta device. Most of the sensors that can be monitored from inside the Android/iOS application can be monitored with this integration. {% include integrations/config_flow.md %} + +## Services + +### Service `renson.set_timer_level` + +Set the ventilation timer. + + | Service data attribute | Required | Description | Example | + | ---------------------- | -------- | ----------- | ------- | + | `timer_level`| yes | Level setting | | + | `minutes` | yes | Time of the timer (0 will disable the timer) | | + +### Service `renson.set_breeze` + +Set the breeze function of the ventilation system. + + | Service data attribute | Required | Description | Example | + | ---------------------- | -------- | ----------- | ------- | + | `breeze_level`| no | Ventilation level when breeze function is activated | | + | `temperature` | no | Temperature when the breeze function should be activated in °C | | + | `activate` | yes | Activate or disable the breeze feature | `2020-05-01T17:45:00` | + +### Service `renson.set_pollution_settings` + +Set all the pollution settings of the ventilation system. + + | Service data attribute | Required | Description | Example | + | ---------------------- | -------- | ----------- | ------- | + | `day_pollution_level`| no | Ventilation level when pollution is detected in the day | | + | `night_pollution_level` | no | Ventilation level when pollution is detected in the night | | + | `humidity_control` | no | Activate or disable the humidity control | | + | `airquality_control` | no | Activate or disable the air quality control | | + | `co2_control` | no | Activate or disable the CO2 control | `2020-05-01T17:45:00` | + | `co2_threshold` | no | Sets the CO2 pollution threshold level in ppm | `2020-05-01T17:45:00` | + | `co2_hysteresis` | no | Sets the CO2 pollution threshold hysteresis level in ppm | `2020-05-01T17:45:00` |