1
0
mirror of https://github.com/home-assistant/core.git synced 2026-04-29 13:13:46 +01:00
Files
core/homeassistant/components/nexia/services.yaml
currand 691cb378a0 Correctly support humidification and dehumidification in Nexia Thermostats (#139792)
* 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>
2025-04-02 10:29:40 -10:00

65 lines
1.1 KiB
YAML

set_aircleaner_mode:
target:
entity:
integration: nexia
domain: climate
fields:
aircleaner_mode:
required: true
selector:
select:
options:
- "allergy"
- "auto"
- "quick"
set_humidify_setpoint:
target:
entity:
integration: nexia
domain: climate
fields:
humidity:
required: true
selector:
number:
min: 10
max: 45
unit_of_measurement: "%"
set_dehumidify_setpoint:
target:
entity:
integration: nexia
domain: climate
fields:
humidity:
required: true
selector:
number:
min: 35
max: 65
unit_of_measurement: "%"
set_hvac_run_mode:
target:
entity:
integration: nexia
domain: climate
fields:
run_mode:
required: false
selector:
select:
options:
- "permanent_hold"
- "run_schedule"
hvac_mode:
required: false
selector:
select:
options:
- "auto"
- "cool"
- "heat"