2020-08-04 20:37:20 +00:00
|
|
|
"""Constants for the Spider integration."""
|
2021-12-04 12:43:48 +00:00
|
|
|
from homeassistant.const import Platform
|
2020-08-04 20:37:20 +00:00
|
|
|
|
|
|
|
DOMAIN = "spider"
|
|
|
|
DEFAULT_SCAN_INTERVAL = 300
|
|
|
|
|
2021-12-04 12:43:48 +00:00
|
|
|
PLATFORMS = [Platform.CLIMATE, Platform.SWITCH, Platform.SENSOR]
|