13 lines
248 B
Python
13 lines
248 B
Python
|
"""Constants for the Qbus integration."""
|
||
|
|
||
|
from typing import Final
|
||
|
|
||
|
from homeassistant.const import Platform
|
||
|
|
||
|
DOMAIN: Final = "qbus"
|
||
|
PLATFORMS: list[Platform] = [Platform.SWITCH]
|
||
|
|
||
|
CONF_SERIAL_NUMBER: Final = "serial"
|
||
|
|
||
|
MANUFACTURER: Final = "Qbus"
|