mirror of
https://github.com/home-assistant/core.git
synced 2025-06-09 07:37:06 +00:00
13 lines
210 B
Python
13 lines
210 B
Python
"""Ecovacs constants."""
|
|
from deebot_client.events import LifeSpan
|
|
|
|
DOMAIN = "ecovacs"
|
|
|
|
CONF_CONTINENT = "continent"
|
|
|
|
SUPPORTED_LIFESPANS = (
|
|
LifeSpan.BRUSH,
|
|
LifeSpan.FILTER,
|
|
LifeSpan.SIDE_BRUSH,
|
|
)
|