* Convert Entity.update_ha_state to be async * Make Service.call async * Update entity.py * Add Entity.async_update * Make automation zone trigger async * Fix linting * Reduce flakiness in hass.block_till_done * Make automation.numeric_state async * Make mqtt.subscribe async * Make automation.mqtt async * Make automation.time async * Make automation.sun async * Add async_track_point_in_utc_time * Make helpers.track_sunrise/set async * Add async_track_state_change * Make automation.state async * Clean up helpers/entity.py tests * Lint * Lint * Core.is_state and Core.is_state_attr are async friendly * Lint * Lint
53 lines
1.7 KiB
Python
53 lines
1.7 KiB
Python
"""
|
|
Offer time listening automation rules.
|
|
|
|
For more details about this automation rule, please refer to the documentation
|
|
at https://home-assistant.io/components/automation/#time-trigger
|
|
"""
|
|
import asyncio
|
|
import logging
|
|
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.const import CONF_AFTER, CONF_PLATFORM
|
|
from homeassistant.helpers import config_validation as cv
|
|
from homeassistant.helpers.event import track_time_change
|
|
|
|
CONF_HOURS = "hours"
|
|
CONF_MINUTES = "minutes"
|
|
CONF_SECONDS = "seconds"
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
TRIGGER_SCHEMA = vol.All(vol.Schema({
|
|
vol.Required(CONF_PLATFORM): 'time',
|
|
CONF_AFTER: cv.time,
|
|
CONF_HOURS: vol.Any(vol.Coerce(int), vol.Coerce(str)),
|
|
CONF_MINUTES: vol.Any(vol.Coerce(int), vol.Coerce(str)),
|
|
CONF_SECONDS: vol.Any(vol.Coerce(int), vol.Coerce(str)),
|
|
}), cv.has_at_least_one_key(CONF_HOURS, CONF_MINUTES,
|
|
CONF_SECONDS, CONF_AFTER))
|
|
|
|
|
|
def trigger(hass, config, action):
|
|
"""Listen for state changes based on configuration."""
|
|
if CONF_AFTER in config:
|
|
after = config.get(CONF_AFTER)
|
|
hours, minutes, seconds = after.hour, after.minute, after.second
|
|
else:
|
|
hours = config.get(CONF_HOURS)
|
|
minutes = config.get(CONF_MINUTES)
|
|
seconds = config.get(CONF_SECONDS)
|
|
|
|
@asyncio.coroutine
|
|
def time_automation_listener(now):
|
|
"""Listen for time changes and calls action."""
|
|
hass.async_add_job(action, {
|
|
'trigger': {
|
|
'platform': 'time',
|
|
'now': now,
|
|
},
|
|
})
|
|
|
|
return track_time_change(hass, time_automation_listener,
|
|
hour=hours, minute=minutes, second=seconds)
|