mirror of
https://github.com/home-assistant/core.git
synced 2025-04-26 18:27:51 +00:00
17 lines
537 B
Python
17 lines
537 B
Python
"""Const for the HEOS integration."""
|
|
|
|
ATTR_PASSWORD = "password"
|
|
ATTR_USERNAME = "username"
|
|
ATTR_DESTINATION_POSITION = "destination_position"
|
|
ATTR_QUEUE_IDS = "queue_ids"
|
|
DOMAIN = "heos"
|
|
ENTRY_TITLE = "HEOS System"
|
|
SERVICE_GET_QUEUE = "get_queue"
|
|
SERVICE_GROUP_VOLUME_SET = "group_volume_set"
|
|
SERVICE_GROUP_VOLUME_DOWN = "group_volume_down"
|
|
SERVICE_GROUP_VOLUME_UP = "group_volume_up"
|
|
SERVICE_MOVE_QUEUE_ITEM = "move_queue_item"
|
|
SERVICE_REMOVE_FROM_QUEUE = "remove_from_queue"
|
|
SERVICE_SIGN_IN = "sign_in"
|
|
SERVICE_SIGN_OUT = "sign_out"
|