|
"""Constants for the Qbus integration."""
|
|
|
|
from typing import Final
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN: Final = "qbus"
|
|
PLATFORMS: list[Platform] = [
|
|
Platform.LIGHT,
|
|
Platform.SWITCH,
|
|
]
|
|
|
|
CONF_SERIAL_NUMBER: Final = "serial"
|
|
|
|
MANUFACTURER: Final = "Qbus"
|