mirror of
https://github.com/home-assistant/core.git
synced 2025-07-04 11:57:05 +00:00

* Add light platform * Add on/off for light * Renamed add_entities to async_add_entities * Revert qbusmqttapi bump * Align dependency version * Use AddConfigEntryEntitiesCallback * Use AddConfigEntryEntitiesCallback
16 lines
275 B
Python
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"
|