mirror of
https://github.com/home-assistant/core.git
synced 2026-07-01 19:57:08 +01:00
31 lines
825 B
Python
31 lines
825 B
Python
"""Define services for the Nest integration."""
|
|
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.components.climate import (
|
|
DOMAIN as CLIMATE_DOMAIN,
|
|
ClimateEntityFeature,
|
|
)
|
|
from homeassistant.core import HomeAssistant, callback
|
|
from homeassistant.helpers import config_validation as cv, service
|
|
|
|
from .const import DOMAIN
|
|
|
|
SERVICE_SET_FAN_TIMER = "set_fan_timer"
|
|
|
|
|
|
@callback
|
|
def async_setup_services(hass: HomeAssistant) -> None:
|
|
"""Register services for the Nest integration."""
|
|
service.async_register_platform_entity_service(
|
|
hass,
|
|
DOMAIN,
|
|
SERVICE_SET_FAN_TIMER,
|
|
entity_domain=CLIMATE_DOMAIN,
|
|
schema={
|
|
vol.Required("duration"): cv.time_period,
|
|
},
|
|
func="async_set_fan_timer",
|
|
required_features=[ClimateEntityFeature.FAN_MODE],
|
|
)
|