1
0
mirror of https://github.com/home-assistant/core.git synced 2025-06-02 04:07:04 +00:00
Álvaro Fernández Rojas abe78b1212
Add QNAP QSW Button platform ()
Co-authored-by: J. Nick Koston <nick@koston.org>
2022-05-13 19:24:29 -05:00

15 lines
257 B
Python

"""Constants for the QNAP QSW integration."""
from typing import Final
ATTR_MAX: Final = "max"
ATTR_MESSAGE: Final = "message"
DOMAIN: Final = "qnap_qsw"
MANUFACTURER: Final = "QNAP"
RPM: Final = "rpm"
QSW_REBOOT = "reboot"
QSW_TIMEOUT_SEC: Final = 25