core/homeassistant/components/switchbot_cloud/const.py

9 lines
216 B
Python
Raw Normal View History

"""Constants for the SwitchBot Cloud integration."""
from datetime import timedelta
from typing import Final
DOMAIN: Final = "switchbot_cloud"
ENTRY_TITLE = "SwitchBot Cloud"
SCAN_INTERVAL = timedelta(seconds=600)