Dual target climate page

- Solves #909
- Partially solves #1486
- Solves #1481
- Solves #1459
- Solves #1006
- Solves #1106
This commit is contained in:
Edward Firmo
2024-01-01 22:04:51 +01:00
parent 35b0c23be8
commit f09021d859
33 changed files with 592 additions and 794 deletions

View File

@@ -71,7 +71,6 @@ sensor:
```
or:
```yaml
sensor:
- id: my_sensor
@@ -85,4 +84,15 @@ sensor:
} else {
// Your code here
}
```
```
or if you are setting up a script (largely used in this project) it can just kill itself if `is_uploading_tft`:
```yaml
scripts:
- id: my_new_script_id
...
then:
- lambda: |-
if (id(is_uploading_tft)) my_new_script_id->stop();
// Your code here
```