2023-08-08 00:52:54 +02:00

14 lines
302 B
Python

"""The enphase_envoy component."""
from pyenphase import (
EnvoyAuthenticationError,
EnvoyAuthenticationRequired,
)
from homeassistant.const import Platform
DOMAIN = "enphase_envoy"
PLATFORMS = [Platform.SENSOR]
INVALID_AUTH_ERRORS = (EnvoyAuthenticationError, EnvoyAuthenticationRequired)