* 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
11 lines
230 B
Python
11 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)
|