Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Time & Date integration."""
2 
3 from __future__ import annotations
4 
5 from typing import Final
6 
7 from homeassistant.const import Platform
8 
9 CONF_DISPLAY_OPTIONS = "display_options"
10 DOMAIN: Final = "time_date"
11 PLATFORMS = [Platform.SENSOR]
12 TIME_STR_FORMAT = "%H:%M"
13 
14 OPTION_TYPES = [
15  "time",
16  "date",
17  "date_time",
18  "date_time_utc",
19  "date_time_iso",
20  "time_date",
21  "time_utc",
22 ]