Schedule Helper Feature Requests - UI Granularity, Reloading #14825
Unanswered
SirNate0
asked this question in
Other feature requests
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
As is, creating a schedule with the UI is not particularly usable for anything other than very broad schedules that match half-hour intervals (HH::00 or HH:30). Internally, though, the schedules are saved with at least second granularity. I was attempting to create a schedule that needs to start at 40 after, but there was no way to do this from the UI.
Instead, I had two options:
.storage/schedule
file is json with a slightly different format than the YAML (shown at https://www.home-assistant.io/integrations/schedule/). Since JSON is generally (always?) valid YAML, simply running it through a site like yamllint.com is enough to do most of the reformatting, though some manual changes were still required. Unfortunately with this option the schedule cannot be edited in the UI, and nor is it even displayed read-only..storage/schedule
with the times that I would prefer rather than the half-hour increments. However there seems to be no way to force a reload of this file. WhileSchedule: Reload
sounds like it should reload it, it does not. Same for theDeveloper Tools > YAML > YAML configuration reloading > SCHEDULE
button. Seemingly the only way to get it to reload the file is to restart home assistant.So, the feature requests:
.storage/schedule
file as well, e.g. through theSchedule: Reload
service.Beta Was this translation helpful? Give feedback.
All reactions