mirror of
https://github.com/home-assistant/core.git
synced 2025-12-21 19:39:06 +00:00
22 lines
440 B
Python
22 lines
440 B
Python
"""Constants for the Ridwell integration."""
|
|
|
|
import logging
|
|
|
|
DOMAIN = "ridwell"
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
SENSOR_TYPE_NEXT_PICKUP = "next_pickup"
|
|
|
|
CONF_CALENDAR_TITLE = "conf_calendar_title"
|
|
|
|
CALENDAR_TITLE_STATUS = "pickup_status"
|
|
CALENDAR_TITLE_ROTATING = "rotating_category"
|
|
CALENDAR_TITLE_NONE = "no_detail"
|
|
|
|
CALENDAR_TITLE_OPTIONS = [
|
|
CALENDAR_TITLE_STATUS,
|
|
CALENDAR_TITLE_ROTATING,
|
|
CALENDAR_TITLE_NONE,
|
|
]
|