Files
core/homeassistant/components/duco/const.py
2026-04-14 17:21:46 +02:00

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=30)