mirror of
https://github.com/elisspace/core.git
synced 2026-09-19 17:21:56 +00:00
14 lines
279 B
Python
14 lines
279 B
Python
"""Shark IQ Constants."""
|
|
from datetime import timedelta
|
|
import logging
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
_LOGGER = logging.getLogger(__package__)
|
|
|
|
API_TIMEOUT = 20
|
|
PLATFORMS = [Platform.VACUUM]
|
|
DOMAIN = "sharkiq"
|
|
SHARK = "Shark"
|
|
UPDATE_INTERVAL = timedelta(seconds=30)
|