Files
core/homeassistant/components/duco/const.py
2026-04-09 23:54:31 +02:00

10 lines
198 B
Python

"""Constants for the Duco integration."""
from datetime import timedelta
from homeassistant.const import Platform
DOMAIN = "duco"
PLATFORMS = [Platform.FAN]
SCAN_INTERVAL = timedelta(seconds=30)