* initial work on config flow. * more work on config flow. * work on config flow and add tests. other cleanup. * cleanup tests. * fix test. * isort * Update .coveragerc * Update test_init.py * Update test_init.py * Update test_init.py * Update test_config_flow.py * Update test_config_flow.py * Update test_config_flow.py * correct upnp serial format. * improve config flow coverage. * review tweaks. * further review tweaks * simplify dtv data gathering job * lint * black * Update test_init.py * Update test_init.py * Simplify exception handling. * Simplify exception handling. * Update media_player.py * Update test_media_player.py * Update test_media_player.py * Update test_media_player.py * Update test_media_player.py * Update test_media_player.py * fix failing test. * restore change made during debug. * isort. Co-authored-by: Paulus Schoutsen <paulus@home-assistant.io>
20 lines
502 B
Python
20 lines
502 B
Python
"""Constants for the DirecTV integration."""
|
|
|
|
DOMAIN = "directv"
|
|
|
|
ATTR_MEDIA_CURRENTLY_RECORDING = "media_currently_recording"
|
|
ATTR_MEDIA_RATING = "media_rating"
|
|
ATTR_MEDIA_RECORDED = "media_recorded"
|
|
ATTR_MEDIA_START_TIME = "media_start_time"
|
|
|
|
DATA_CLIENT = "client"
|
|
DATA_LOCATIONS = "locations"
|
|
DATA_VERSION_INFO = "version_info"
|
|
|
|
DEFAULT_DEVICE = "0"
|
|
DEFAULT_MANUFACTURER = "DirecTV"
|
|
DEFAULT_NAME = "DirecTV Receiver"
|
|
DEFAULT_PORT = 8080
|
|
|
|
MODEL_HOST = "DirecTV Host"
|
|
MODEL_CLIENT = "DirecTV Client"
|