mirror of
https://github.com/home-assistant/core.git
synced 2026-05-31 20:54:23 +01:00
d766aae436
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: frenck <195327+frenck@users.noreply.github.com>
11 lines
246 B
Python
11 lines
246 B
Python
"""Constants for the Iammeter integration."""
|
|
|
|
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]
|