From 57e38648ed13df14b86847710df138440644ba6d Mon Sep 17 00:00:00 2001 From: Edward Firmo <94725493+edwardtfn@users.noreply.github.com> Date: Thu, 23 Nov 2023 16:39:10 +0100 Subject: [PATCH] Climate custom presets --- (EN)-Customization.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/(EN)-Customization.md b/(EN)-Customization.md index d330044..09fab98 100644 --- a/(EN)-Customization.md +++ b/(EN)-Customization.md @@ -26,6 +26,7 @@ Table of contents: - [Framework `esp-idf`](#framework-esp-idf) - [Bluetooth proxy](#bluetooth-proxy) - [Logger via UART](#logger-via-uart) + - [Climate custom presets](#climate-custom-presets)     @@ -502,3 +503,25 @@ logger: baud_rate: 115200 ``` +  +### Climate custom presets + +```yaml +# Add custom presets to your climate (heat in this example) +climate: + - id: !extend thermostat_embedded + default_preset: "Home" + preset: + - name: "Off" + default_target_temperature_low: ${temp_min} ${temp_units} + mode: "off" + - name: Home + default_target_temperature_low: 21 ${temp_units} + mode: "heat" + - name: Away + default_target_temperature_low: 16.5 ${temp_units} + mode: "heat" + - name: Sleep + default_target_temperature_low: 17.5 ${temp_units} + mode: "heat" +``` \ No newline at end of file