Climate custom presets
@@ -26,6 +26,7 @@ Table of contents:
|
|||||||
- [Framework `esp-idf`](#framework-esp-idf)
|
- [Framework `esp-idf`](#framework-esp-idf)
|
||||||
- [Bluetooth proxy](#bluetooth-proxy)
|
- [Bluetooth proxy](#bluetooth-proxy)
|
||||||
- [Logger via UART](#logger-via-uart)
|
- [Logger via UART](#logger-via-uart)
|
||||||
|
- [Climate custom presets](#climate-custom-presets)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -502,3 +503,25 @@ logger:
|
|||||||
baud_rate: 115200
|
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"
|
||||||
|
```
|
||||||
Reference in New Issue
Block a user