diff --git a/temescal/__init__.py b/temescal/__init__.py index e8822c0..7f49670 100755 --- a/temescal/__init__.py +++ b/temescal/__init__.py @@ -52,7 +52,7 @@ functions = ["Wi-Fi", "Bluetooth", "Portable", "Aux", "Optical", "CP", "HDMI", "ARC", "Spotify", "Optical2", "HDMI2", "HDMI3", "LG TV", "Mic", "Chromecast", "Optical/HDMI ARC", "LG Optical", "FM", "USB", "USB2", - "E-ARC"] + "E-ARC", "WOWCAST"] WIFI = 0 BLUETOOTH = 1 @@ -75,11 +75,16 @@ USB = 18 USB_2 = 19 E_ARC = 20 +WOWCAST = 21 -stream_types = ["Unknown0", "Google Cast", "Unknown2", "Unknown3", "Spotify Connect"] +stream_types = ["Wi-Fi", "Google Cast", "Amazon Alexa", "Apple AirPlay", "Spotify Connect", "Tidal Connect"] +WIFI_STREAM = 0 GOOGLE_CAST = 1 +AMAZON_ALEXA = 2 +APPLE_AIRPLAY = 3 SPOTIFY_CONNECT = 4 +TIDAL_CONNECT = 5 play_control_states = ["Playing", "Stopped/Paused"]