5 lines
145 B
Python
5 lines
145 B
Python
"""Constants for the Ruuvi Gateway integration."""
|
|
from datetime import timedelta
|
|
|
|
DOMAIN = "ruuvi_gateway"
|
|
SCAN_INTERVAL = timedelta(seconds=5)
|