Add support for Vizio sound mode (#33200)

* add sound mode support for devices that support it

* make setting and unsetting flag better

* move eq and audio settings into constants

* fix missed statement to use constant instead of hardcoded string

* further fixes based on review

* bump pyvizio version to include newly identified app
This commit is contained in:
Raman Gupta 2020-04-02 22:48:19 -04:00 committed by GitHub
parent f25321e010
commit 081b822d25
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 79 additions and 11 deletions

View file

@ -64,6 +64,9 @@ class MockCompletePairingResponse(object):
self.auth_token = auth_token
CURRENT_EQ = "Music"
EQ_LIST = ["Music", "Movie"]
CURRENT_INPUT = "HDMI"
INPUT_LIST = ["HDMI", "USB", "Bluetooth", "AUX"]