mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-22 08:46:51 +00:00
Add MQTT climate precision (#9896)
* Add MQTT climate precision * Document default values * Add example config * Fix generate error
This commit is contained in:
parent
bd2e4898d7
commit
2b7cf67945
@ -139,6 +139,11 @@ temperature_high_state_topic:
|
|||||||
description: The MQTT topic to subscribe for changes in the target high temperature. If this is not set, the target high temperature works in optimistic mode (see below).
|
description: The MQTT topic to subscribe for changes in the target high temperature. If this is not set, the target high temperature works in optimistic mode (see below).
|
||||||
required: false
|
required: false
|
||||||
type: string
|
type: string
|
||||||
|
precision:
|
||||||
|
description: The desired precision for this device. Can be used to match your actual thermostat's precision. Supported values are `0.1`, `0.5` and `1.0`.
|
||||||
|
required: false
|
||||||
|
type: float
|
||||||
|
default: 0.1 for Celsius and 1.0 for Fahrenheit.
|
||||||
fan_mode_command_topic:
|
fan_mode_command_topic:
|
||||||
description: The MQTT topic to publish commands to change the fan mode.
|
description: The MQTT topic to publish commands to change the fan mode.
|
||||||
required: false
|
required: false
|
||||||
@ -318,4 +323,5 @@ climate:
|
|||||||
temperature_command_topic: "study/ac/temperature/set"
|
temperature_command_topic: "study/ac/temperature/set"
|
||||||
fan_mode_command_topic: "study/ac/fan/set"
|
fan_mode_command_topic: "study/ac/fan/set"
|
||||||
swing_mode_command_topic: "study/ac/swing/set"
|
swing_mode_command_topic: "study/ac/swing/set"
|
||||||
|
precision: 1.0
|
||||||
```
|
```
|
||||||
|
Loading…
x
Reference in New Issue
Block a user