mirror of
https://github.com/home-assistant/core.git
synced 2025-04-28 11:17:53 +00:00
7 lines
210 B
Python
7 lines
210 B
Python
"""Constants for the SwitchBee Smart Home integration."""
|
|
|
|
from switchbee.api import CentralUnitPolling, CentralUnitWsRPC
|
|
|
|
DOMAIN = "switchbee"
|
|
SCAN_INTERVAL_SEC = {CentralUnitWsRPC: 10, CentralUnitPolling: 5}
|