mirror of
https://github.com/elisspace/core.git
synced 2026-09-20 01:31:36 +00:00
* A platform is not a component * Fix dynalite * SUPPORTED_PLATFORMS --> PLATFORMS * In tests * In tests 2 * Fix SmartThings * Fix ZHA test * Fix Z-Wave * Revert Z-Wave * Use PLATFORMS const in ambient_station * Fix ihc comment
12 lines
230 B
Python
12 lines
230 B
Python
"""Shark IQ Constants."""
|
|
from datetime import timedelta
|
|
import logging
|
|
|
|
_LOGGER = logging.getLogger(__package__)
|
|
|
|
API_TIMEOUT = 20
|
|
PLATFORMS = ["vacuum"]
|
|
DOMAIN = "sharkiq"
|
|
SHARK = "Shark"
|
|
UPDATE_INTERVAL = timedelta(seconds=30)
|