mirror of
https://github.com/home-assistant/core.git
synced 2026-09-25 17:04:04 -04:00
10 lines
155 B
Python
10 lines
155 B
Python
"""Constant for Imeon component."""
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "imeon_inverter"
|
|
TIMEOUT = 30
|
|
PLATFORMS = [
|
|
Platform.SENSOR,
|
|
]
|