mirror of
https://github.com/home-assistant/core.git
synced 2026-07-05 05:35:29 +01:00
11 lines
231 B
Python
11 lines
231 B
Python
"""Constants for the Duco integration."""
|
|
|
|
from datetime import timedelta
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "duco"
|
|
PLATFORMS = [Platform.FAN, Platform.SENSOR]
|
|
SCAN_INTERVAL = timedelta(seconds=10)
|
|
BOX_NODE_ID = 1
|