mirror of
https://github.com/home-assistant/core.git
synced 2025-12-11 10:28:05 +00:00
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
|