Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Iammeter integration."""
2 
3 from __future__ import annotations
4 
5 DOMAIN = "iammeter"
6 
7 # Default config for iammeter.
8 DEFAULT_IP = "192.168.2.15"
9 DEFAULT_NAME = "IamMeter"
10 DEVICE_3080 = "WEM3080"
11 DEVICE_3080T = "WEM3080T"
12 DEVICE_TYPES = [DEVICE_3080, DEVICE_3080T]