mirror of https://github.com/home-assistant/core
13 lines
282 B
Python
13 lines
282 B
Python
"""Constants for the Iammeter integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
DOMAIN = "iammeter"
|
|
|
|
# Default config for iammeter.
|
|
DEFAULT_IP = "192.168.2.15"
|
|
DEFAULT_NAME = "IamMeter"
|
|
DEVICE_3080 = "WEM3080"
|
|
DEVICE_3080T = "WEM3080T"
|
|
DEVICE_TYPES = [DEVICE_3080, DEVICE_3080T]
|