mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-21 23:04:55 +01:00
8 lines
189 B
Python
8 lines
189 B
Python
"""Constants for Ampio Air Quality platform."""
|
|
|
|
from datetime import timedelta
|
|
from typing import Final
|
|
|
|
CONF_STATION_ID: Final = "station_id"
|
|
SCAN_INTERVAL: Final = timedelta(minutes=10)
|