* Convert ps4 to async * Init client handler. * Add PS4_DATA * Move data class * add handler * add import * Update __init__.py * Change most functions to async * bump 0.8.0 * bump 0.8.0 * bump 0.8.0 * Pylint * whitespace * Rewrite to use asyncio sockets. * Remove unneeded log * Add alias * Update __init__.py * Update config_flow.py * Add alias * Add search_all method * Clean up * whitespace * change comment * 0.8.2 * 0.8.2 * 0.8.2 * Pylint * pylint * faster updates * Avoid scheduling update if state is the same. * Better handling remove search all
9 lines
274 B
Python
9 lines
274 B
Python
"""Constants for PlayStation 4."""
|
|
DEFAULT_NAME = "PlayStation 4"
|
|
DEFAULT_REGION = "United States"
|
|
DEFAULT_ALIAS = 'Home-Assistant'
|
|
DOMAIN = 'ps4'
|
|
PS4_DATA = 'ps4_data'
|
|
|
|
# Deprecated used for logger/backwards compatibility from 0.89
|
|
REGIONS = ['R1', 'R2', 'R3', 'R4', 'R5']
|