9 lines
170 B
Python
9 lines
170 B
Python
|
"""Constants for the Ecoforest integration."""
|
||
|
|
||
|
from datetime import timedelta
|
||
|
|
||
|
DOMAIN = "ecoforest"
|
||
|
MANUFACTURER = "Ecoforest"
|
||
|
|
||
|
POLLING_INTERVAL = timedelta(seconds=30)
|