mirror of
https://github.com/home-assistant/core.git
synced 2026-06-30 03:06:10 +01:00
0b687df9f8
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com> Co-authored-by: Joostlek <joostlek@outlook.com>
17 lines
403 B
Python
17 lines
403 B
Python
"""Constants for the openSenseMap integration."""
|
|
|
|
import logging
|
|
|
|
DOMAIN = "opensensemap"
|
|
|
|
LOGGER = logging.getLogger(__name__)
|
|
|
|
CONF_STATION_ID = "station_id"
|
|
|
|
INTEGRATION_TITLE = "openSenseMap"
|
|
DEPRECATED_YAML_BREAKS_IN_VERSION = "2026.12.0"
|
|
|
|
ERROR_CANNOT_CONNECT = "cannot_connect"
|
|
ERROR_INVALID_STATION = "invalid_station"
|
|
KNOWN_IMPORT_ABORT_REASONS = (ERROR_CANNOT_CONNECT, ERROR_INVALID_STATION)
|