12 lines
281 B
Python
12 lines
281 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]
|