mirror of
https://github.com/home-assistant/core.git
synced 2026-04-02 08:26:41 +01:00
10 lines
233 B
Python
10 lines
233 B
Python
"""Constants for the systemnexa2 integration."""
|
|
|
|
from typing import Final
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "systemnexa2"
|
|
MANUFACTURER = "NEXA"
|
|
PLATFORMS: Final = [Platform.LIGHT, Platform.SENSOR, Platform.SWITCH]
|