Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the onboarding component."""
2 
3 DOMAIN = "onboarding"
4 STEP_USER = "user"
5 STEP_CORE_CONFIG = "core_config"
6 STEP_INTEGRATION = "integration"
7 STEP_ANALYTICS = "analytics"
8 
9 STEPS = [STEP_USER, STEP_CORE_CONFIG, STEP_ANALYTICS, STEP_INTEGRATION]
10 
11 DEFAULT_AREAS = ("living_room", "kitchen", "bedroom")