From 34a97671103e68c9757a9a2541d52467b17c75e0 Mon Sep 17 00:00:00 2001 From: GrKoR Date: Fri, 8 Apr 2022 16:44:25 +0300 Subject: [PATCH] Docs for actions display_on & display_off --- README-EN.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/README-EN.md b/README-EN.md index 387b71a..08282d5 100644 --- a/README-EN.md +++ b/README-EN.md @@ -137,6 +137,27 @@ climate: - **supported_swing_modes** (*Optional*, list): List of supported swing modes. Possible values are: ``VERTICAL``, ``HORIZONTAL``, ``BOTH``. No swing modes by default. - All other options from [Climate](https://esphome.io/components/climate/index.html#base-climate-configuration). +## Actions: ## +### ``aux_ac.display_on`` ### +This action turns a HVAC temperature display on when executed. + +```yaml +on_...: + then: + - aux_ac.display_on: aux_ac_id +``` +- **aux_ac_id** (**Requared**, string): ID of `aux_ac` component. + +### ``aux_ac.display_off`` ### +This action turns a HVAC temperature display off when executed. + +```yaml +on_...: + then: + - aux_ac.display_off: aux_ac_id +``` +- **aux_ac_id** (**Requared**, string): ID of `aux_ac` component. + ## Simple example ## The source code of this example is located in the [aux_ac_simple.yaml](https://github.com/GrKoR/esphome_aux_ac_component/blob/master/examples/simple/aux_ac_simple.yaml) file.