Skip to content

Commit b5b7de9

Browse files
aronskyLandrash
authored andcommitted
Update climate.generic_thermostat.markdown (home-assistant#2056)
Add explanation for the new `keep_alive` field of `generic_thermostat`.
1 parent e400b36 commit b5b7de9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

source/_components/climate.generic_thermostat.markdown

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,9 @@ Configuration variables:
3535
- **ac_mode** (*Optional*): Set the switch specified in the *heater* option to be treated as a cooling device instead of a heating device.
3636
- **min_cycle_duration** (*Optional*): Set a minimum amount of time that the switch specified in the *heater* option must be in it's current state prior to being switched either off or on.
3737
- **tolerance** (*Optional*): Set a minimum amount of difference between the temperature read by the sensor specified in the *target_sensor* option and the target temperature that must change prior to being switched either off or on. For example, if the target temperature is 25 and the tolerance is 0.5 the heater will start when the sensor goes below 24.5 and it will stop when the sensor goes above 25.5.
38+
- **keep_alive** (*Optional*): Set a keep-alive interval. If set, the switch specified in the *heater* option will be triggered every time the interval elapses. Use with heaters and A/C units that shut off if they don't receive a signal from their remote for a while.
3839

39-
A full configuration example looks like the one below. `min_cycle_duration` must contains at least one of the following entries: `days:`, `hours:`, `minutes:`, `seconds:` or `milliseconds:`.
40+
A full configuration example looks like the one below. `min_cycle_duration` and `keep_alive` must contain at least one of the following entries: `days:`, `hours:`, `minutes:`, `seconds:` or `milliseconds:`.
4041

4142
```yaml
4243
# Full example configuration.yaml entry
@@ -51,4 +52,6 @@ climate:
5152
tolerance: 0.3
5253
min_cycle_duration:
5354
seconds: 5
55+
keep_alive:
56+
minutes: 3
5457
```

0 commit comments

Comments
 (0)