mirror of
https://github.com/home-assistant/core.git
synced 2026-04-29 05:03:59 +01:00
* Add set_dehumidify_setpoint service. Refactor set_humidify_setpoint. * Add closest_value function in utils * Refactor target humidity * Update tests for util.py * Refactor target humidity. Update tests. * Remove duplicate constant * Add humidify and dehumidfy sensors * Update sensor names * Remove clamping and commented code * Iplement suggestions from review * Switch order check order * remove closest_value() * Update strings for clarity/grammar * Update strings for grammar/clarity * tweaks --------- Co-authored-by: J. Nick Koston <nick@koston.org>
37 lines
643 B
JSON
37 lines
643 B
JSON
{
|
|
"entity": {
|
|
"number": {
|
|
"fan_speed": {
|
|
"default": "mdi:fan"
|
|
}
|
|
},
|
|
"scene": {
|
|
"automation": {
|
|
"default": "mdi:script-text-outline"
|
|
}
|
|
},
|
|
"switch": {
|
|
"hold": {
|
|
"default": "mdi:timer",
|
|
"state": {
|
|
"on": "mdi:timer-off"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"services": {
|
|
"set_aircleaner_mode": {
|
|
"service": "mdi:air-filter"
|
|
},
|
|
"set_humidify_setpoint": {
|
|
"service": "mdi:water-percent"
|
|
},
|
|
"set_dehumidify_setpoint": {
|
|
"service": "mdi:water-percent"
|
|
},
|
|
"set_hvac_run_mode": {
|
|
"service": "mdi:hvac"
|
|
}
|
|
}
|
|
}
|