mirror of
https://github.com/home-assistant/core.git
synced 2025-07-04 03:47:09 +00:00
14 lines
278 B
Python
14 lines
278 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)
|