mirror of
https://github.com/home-assistant/core.git
synced 2025-11-09 02:49:40 +00:00
* 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>
18 lines
317 B
Python
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"
|