mirror of
https://github.com/home-assistant/core.git
synced 2026-08-14 09:13:06 +01:00
10 lines
195 B
Python
10 lines
195 B
Python
"""Constants for the SAJ Solar Inverter integration."""
|
|
|
|
from typing import Final
|
|
|
|
DOMAIN: Final = "saj"
|
|
|
|
INTEGRATION_TITLE: Final = "SAJ Solar Inverter"
|
|
|
|
CONNECTION_TYPES = ["ethernet", "wifi"]
|