1
mirror of https://github.com/home-assistant/core synced 2024-08-02 23:40:32 +02:00
ha-core/homeassistant/components/geonetnz_quakes/const.py
2021-12-04 13:26:40 +01:00

20 lines
459 B
Python

"""Define constants for the GeoNet NZ Quakes integration."""
from datetime import timedelta
from homeassistant.const import Platform
DOMAIN = "geonetnz_quakes"
PLATFORMS = [Platform.SENSOR, Platform.GEO_LOCATION]
CONF_MINIMUM_MAGNITUDE = "minimum_magnitude"
CONF_MMI = "mmi"
FEED = "feed"
DEFAULT_FILTER_TIME_INTERVAL = timedelta(days=7)
DEFAULT_MINIMUM_MAGNITUDE = 0.0
DEFAULT_MMI = 3
DEFAULT_RADIUS = 50.0
DEFAULT_SCAN_INTERVAL = timedelta(minutes=5)