* Add select platform to Enphase integration * Review comments pt1 * Review comments pt2 * Review comments * Additional tweaks from code review * .coveragerc --------- Co-authored-by: J. Nick Koston <nick@koston.org>
10 lines
347 B
Python
10 lines
347 B
Python
"""The enphase_envoy component."""
|
|
from pyenphase import EnvoyAuthenticationError, EnvoyAuthenticationRequired
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "enphase_envoy"
|
|
|
|
PLATFORMS = [Platform.BINARY_SENSOR, Platform.SELECT, Platform.SENSOR, Platform.SWITCH]
|
|
|
|
INVALID_AUTH_ERRORS = (EnvoyAuthenticationError, EnvoyAuthenticationRequired)
|