Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mirrored_repos
HomeAssistant
Core
Commits
e68cc83e
Commit
e68cc83e
authored
9 years ago
by
Stefan Jonasson
Browse files
Options
Downloads
Patches
Plain Diff
return and output error if none of the 4 keys provided
only parse hour/minute/second if after is not available
parent
9b964711
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
homeassistant/components/automation/time.py
+12
-5
12 additions, 5 deletions
homeassistant/components/automation/time.py
with
12 additions
and
5 deletions
homeassistant/components/automation/time.py
+
12
−
5
View file @
e68cc83e
...
...
@@ -19,20 +19,27 @@ CONF_WEEKDAY = "weekday"
WEEKDAYS
=
[
'
mon
'
,
'
tue
'
,
'
wed
'
,
'
thu
'
,
'
fri
'
,
'
sat
'
,
'
sun
'
]
_LOGGER
=
logging
.
getLogger
(
__name__
)
def
trigger
(
hass
,
config
,
action
):
"""
Listen for state changes based on `config`.
"""
hours
=
convert
(
config
.
get
(
CONF_HOURS
),
int
)
minutes
=
convert
(
config
.
get
(
CONF_MINUTES
),
int
)
seconds
=
convert
(
config
.
get
(
CONF_SECONDS
),
int
)
if
CONF_AFTER
in
config
:
after
=
dt_util
.
parse_time_str
(
config
[
CONF_AFTER
])
if
after
is
None
:
logging
.
getLogger
(
__name__
)
.
error
(
_LOGGER
.
error
(
'
Received invalid after value: %s
'
,
config
[
CONF_AFTER
])
return
False
hours
,
minutes
,
seconds
=
after
.
hour
,
after
.
minute
,
after
.
second
elif
CONF_HOURS
in
config
or
CONF_MINUTES
in
config
\
or
CONF_SECONDS
in
config
:
hours
=
convert
(
config
.
get
(
CONF_HOURS
),
int
)
minutes
=
convert
(
config
.
get
(
CONF_MINUTES
),
int
)
seconds
=
convert
(
config
.
get
(
CONF_SECONDS
),
int
)
else
:
_LOGGER
.
error
(
'
One of %s, %s, %s OR %s needs to be specified
'
,
CONF_HOURS
,
CONF_MINUTES
,
CONF_SECONDS
,
CONF_AFTER
)
return
False
def
time_automation_listener
(
now
):
"""
Listens for time changes and calls action.
"""
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment