mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-16 13:56:53 +00:00
Update humidity option type to float (#32056)
* Update humidity option type to float for mqtt * Update humidity option type to float for generic hygrostat
This commit is contained in:
parent
1913940fa1
commit
be01c03066
@ -188,7 +188,7 @@ json_attributes_topic:
|
|||||||
max_humidity:
|
max_humidity:
|
||||||
description: The minimum target humidity percentage that can be set.
|
description: The minimum target humidity percentage that can be set.
|
||||||
required: false
|
required: false
|
||||||
type: integer
|
type: float
|
||||||
default: 99
|
default: 99
|
||||||
max_temp:
|
max_temp:
|
||||||
description: Maximum set point available. The default value depends on the temperature unit, and will be 35°C or 95°F.
|
description: Maximum set point available. The default value depends on the temperature unit, and will be 35°C or 95°F.
|
||||||
@ -197,7 +197,7 @@ max_temp:
|
|||||||
min_humidity:
|
min_humidity:
|
||||||
description: The maximum target humidity percentage that can be set.
|
description: The maximum target humidity percentage that can be set.
|
||||||
required: false
|
required: false
|
||||||
type: integer
|
type: float
|
||||||
default: 30
|
default: 30
|
||||||
min_temp:
|
min_temp:
|
||||||
description: Minimum set point available. The default value depends on the temperature unit, and will be 7°C or 44.6°F.
|
description: Minimum set point available. The default value depends on the temperature unit, and will be 7°C or 44.6°F.
|
||||||
|
@ -46,16 +46,16 @@ min_humidity:
|
|||||||
description: Set minimum set point available.
|
description: Set minimum set point available.
|
||||||
required: false
|
required: false
|
||||||
default: 0
|
default: 0
|
||||||
type: integer
|
type: float
|
||||||
max_humidity:
|
max_humidity:
|
||||||
description: Set maximum set point available.
|
description: Set maximum set point available.
|
||||||
required: false
|
required: false
|
||||||
default: 100
|
default: 100
|
||||||
type: integer
|
type: float
|
||||||
target_humidity:
|
target_humidity:
|
||||||
description: Set initial target humidity. This value will be used as a fallback when the previous setpoint is not available.
|
description: Set initial target humidity. This value will be used as a fallback when the previous setpoint is not available.
|
||||||
required: false
|
required: false
|
||||||
type: integer
|
type: float
|
||||||
device_class:
|
device_class:
|
||||||
description: Whether the switch specified in the *humidifier* option to be treated as a humidifier or a dehumidifier device. Must be either "humidifier" or "dehumidifier"
|
description: Whether the switch specified in the *humidifier* option to be treated as a humidifier or a dehumidifier device. Must be either "humidifier" or "dehumidifier"
|
||||||
required: false
|
required: false
|
||||||
|
@ -174,12 +174,12 @@ json_attributes_topic:
|
|||||||
max_humidity:
|
max_humidity:
|
||||||
description: The minimum target humidity percentage that can be set.
|
description: The minimum target humidity percentage that can be set.
|
||||||
required: false
|
required: false
|
||||||
type: integer
|
type: float
|
||||||
default: 100
|
default: 100
|
||||||
min_humidity:
|
min_humidity:
|
||||||
description: The maximum target humidity percentage that can be set.
|
description: The maximum target humidity percentage that can be set.
|
||||||
required: false
|
required: false
|
||||||
type: integer
|
type: float
|
||||||
default: 0
|
default: 0
|
||||||
name:
|
name:
|
||||||
description: The name of the humidifier. Can be set to `null` if only the device name is relevant.
|
description: The name of the humidifier. Can be set to `null` if only the device name is relevant.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user