mirror of
https://github.com/home-assistant/core.git
synced 2026-05-20 07:20:14 +01:00
10 lines
215 B
Python
10 lines
215 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)
|