1
0
mirror of https://github.com/home-assistant/core.git synced 2025-05-10 17:09:17 +00:00
Matrix 83fbcb11ea
Add YoLink SpeakerHub Service ()
* Add YoLink SpeakerHub Service

* fix as suggestion

* service's params descriptions
2024-01-12 08:18:44 +01:00

17 lines
412 B
Python

"""Constants for the yolink integration."""
DOMAIN = "yolink"
MANUFACTURER = "YoLink"
ATTR_DEVICE = "devices"
ATTR_DEVICE_TYPE = "type"
ATTR_DEVICE_NAME = "name"
ATTR_DEVICE_STATE = "state"
ATTR_DEVICE_ID = "deviceId"
ATTR_TARGET_DEVICE = "target_device"
ATTR_VOLUME = "volume"
ATTR_TEXT_MESSAGE = "message"
ATTR_REPEAT = "repeat"
ATTR_TONE = "tone"
YOLINK_EVENT = f"{DOMAIN}_event"
YOLINK_OFFLINE_TIME = 32400