core/homeassistant/components/switchbee/const.py

7 lines
210 B
Python
Raw Normal View History

"""Constants for the SwitchBee Smart Home integration."""
from switchbee.api import CentralUnitPolling, CentralUnitWsRPC
DOMAIN = "switchbee"
SCAN_INTERVAL_SEC = {CentralUnitWsRPC: 10, CentralUnitPolling: 5}