mirror of
https://github.com/home-assistant/core.git
synced 2025-05-05 22:49:17 +00:00

* Move services from media_player * Move services to init * add COMMANDS to const * change service handler to sync
13 lines
356 B
Python
13 lines
356 B
Python
"""Constants for PlayStation 4."""
|
|
DEFAULT_NAME = "PlayStation 4"
|
|
DEFAULT_REGION = "United States"
|
|
DEFAULT_ALIAS = 'Home-Assistant'
|
|
DOMAIN = 'ps4'
|
|
PS4_DATA = 'ps4_data'
|
|
|
|
COMMANDS = (
|
|
'up', 'down', 'right', 'left', 'enter', 'back', 'option', 'ps')
|
|
|
|
# Deprecated used for logger/backwards compatibility from 0.89
|
|
REGIONS = ['R1', 'R2', 'R3', 'R4', 'R5']
|