LifeFlow/home-assistant/custom_components/lifeflow/const.py

20 lines
520 B
Python

"""Constants for LifeFlow integration."""
DOMAIN = "lifeflow"
# Sensor types
SENSOR_MEDICATION_TODAY = "medication_today"
SENSOR_WATER_INTAKE = "water_intake"
SENSOR_SLEEP_QUALITY = "sleep_quality"
SENSOR_DAILY_PROGRESS = "daily_progress"
SENSOR_CURRENT_STREAK = "current_streak"
SENSOR_TOTAL_POINTS = "total_points"
# Button types
BUTTON_LOG_VITAMINS = "log_vitamins"
BUTTON_LOG_WATER = "log_water"
BUTTON_LOG_MEDS = "log_meds"
BUTTON_COMPLETE_ROUTINE = "complete_routine"
# Default values
DEFAULT_NAME = "LifeFlow"