12 lines
257 B
Python
12 lines
257 B
Python
|
"""Constants for the ROMY integration."""
|
||
|
|
||
|
from datetime import timedelta
|
||
|
import logging
|
||
|
|
||
|
from homeassistant.const import Platform
|
||
|
|
||
|
DOMAIN = "romy"
|
||
|
PLATFORMS = [Platform.VACUUM]
|
||
|
UPDATE_INTERVAL = timedelta(seconds=5)
|
||
|
LOGGER = logging.getLogger(__package__)
|