mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-23 10:06:31 +01:00
9 lines
216 B
Python
9 lines
216 B
Python
"""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)
|