hass-core/homeassistant/components/ps4/const.py
ktnrg45 b77d060304 PS4 move load_games and save_games helpers to init from media_player (#25127)
* 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
2019-07-13 20:11:19 +02:00

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']