Files
core/homeassistant/components/qbus/const.py
Thomas D 486535c189 Add scene platform to Qbus integration (#144032)
* Add scene platform

* Remove updating last_activated

* Simplify device info

* Move _attr_name to specific classes

* Refactor device info

---------

Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
2025-05-26 15:37:07 +02:00

18 lines
317 B
Python

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