* Add constant for games_file * move load and save games to init from media_player * Move save and load games to init * Missed arg * missed arg
13 lines
387 B
Python
13 lines
387 B
Python
"""Constants for PlayStation 4."""
|
|
DEFAULT_NAME = "PlayStation 4"
|
|
DEFAULT_REGION = "United States"
|
|
DEFAULT_ALIAS = 'Home-Assistant'
|
|
DOMAIN = 'ps4'
|
|
GAMES_FILE = '.ps4-games.json'
|
|
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']
|