Times of the Day
The Times of the Day integration provides a binary sensor that gets its values by checking if the current time is within defined time ranges.
Configuration
To add the Times of the Day integration to your Home Assistant instance, use this My button:
If the above My button doesn’t work, you can also perform the following steps manually:
-
Browse to your Home Assistant instance.
-
At the top of the screen, select the tab: Helpers.
-
In the bottom right corner, select the Create helper button.
-
From the list, select Times of the Day.
-
Follow the instructions on screen to complete the setup.
YAML Configuration
Alternatlively, this integration can be configured and set up manually via YAML instead. This has some additional functionality over the UI version.
The time ranges can be provided as absolute local time or using the sunrise
or sunset
keyword calculated based on the sun position for location. The location must be provided in the configuration.
In addition for sun position based ranges, the negative or positive offset can be configured.
To enable the Times of Day binary sensor in your installation, add the
following to your configuration.yaml
file:
# Example configuration.yaml entry
binary_sensor:
- platform: tod
name: Early Morning
after: sunrise
after_offset: "-02:00"
before: "07:00"
unique_id: early_morning_sensor
- platform: tod
name: Late Morning
after: "10:00"
before: "12:00"
unique_id: late_morning_sensor
Configuration Variables
The absolute local time value or sun event for ending of the time range.
The absolute local time value or sun event for beginning of the time range.
Considerations
The primary purpose of this sensor is to use a simple time range definition instead of creating a complex template with references to sun.sun
integration attributes.
The sensor state is ON when this condition after
+ after_offset
<= current time
< before
+ before_offset
.
If after
time is later than before
then the next day is considered, i.e.:
binary_sensor:
- platform: tod
name: Night
after: sunset
before: sunrise
In the above example, the next day sunrise
is calculated as a time range end.