core/homeassistant/components/qbus/const.py

16 lines
275 B
Python

"""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"