2020-08-04 20:37:20 +00:00
|
|
|
"""Constants for the Spider integration."""
|
2024-03-08 13:33:51 +00:00
|
|
|
|
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
|
|
|
|
|
2024-01-16 08:47:53 +00:00
|
|
|
PLATFORMS = [Platform.CLIMATE, Platform.SENSOR, Platform.SWITCH]
|