mirror of
https://github.com/home-assistant/core.git
synced 2026-06-01 05:04:21 +01:00
2617c4a453
Co-authored-by: Claude <noreply@anthropic.com>
11 lines
225 B
Python
11 lines
225 B
Python
"""Constants for the eGauge integration."""
|
|
|
|
import logging
|
|
|
|
DOMAIN = "egauge"
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
MANUFACTURER = "eGauge Systems"
|
|
MODEL = "eGauge Energy Monitor"
|
|
COORDINATOR_UPDATE_INTERVAL_SECONDS = 30
|