mirror of
https://github.com/home-assistant/core.git
synced 2026-04-20 16:39:02 +02: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=30)
|