denonavr 1.1.1__py3-none-any.whl → 1.1.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- denonavr/__init__.py +1 -1
- denonavr/api.py +1 -0
- denonavr/const.py +39 -19
- denonavr/dirac.py +3 -2
- denonavr/foundation.py +32 -19
- denonavr/soundmode.py +2 -2
- {denonavr-1.1.1.dist-info → denonavr-1.1.2.dist-info}/METADATA +1 -1
- denonavr-1.1.2.dist-info/RECORD +20 -0
- {denonavr-1.1.1.dist-info → denonavr-1.1.2.dist-info}/WHEEL +1 -1
- denonavr-1.1.1.dist-info/RECORD +0 -20
- {denonavr-1.1.1.dist-info → denonavr-1.1.2.dist-info}/licenses/LICENSE +0 -0
- {denonavr-1.1.1.dist-info → denonavr-1.1.2.dist-info}/top_level.txt +0 -0
denonavr/__init__.py
CHANGED
denonavr/api.py
CHANGED
denonavr/const.py
CHANGED
|
@@ -90,6 +90,8 @@ ReceiverURLs = namedtuple(
|
|
|
90
90
|
"command_hdmi_audio_decode",
|
|
91
91
|
"command_quick_select_mode",
|
|
92
92
|
"command_quick_select_memory",
|
|
93
|
+
"command_smart_select_mode", # Marantz
|
|
94
|
+
"command_smart_select_memory", # Marantz
|
|
93
95
|
"command_auto_standby",
|
|
94
96
|
"command_sleep",
|
|
95
97
|
"command_center_spread",
|
|
@@ -183,6 +185,8 @@ TelnetCommands = namedtuple(
|
|
|
183
185
|
"command_hdmi_audio_decode",
|
|
184
186
|
"command_quick_select_mode",
|
|
185
187
|
"command_quick_select_memory",
|
|
188
|
+
"command_smart_select_mode", # Marantz
|
|
189
|
+
"command_smart_select_memory", # Marantz
|
|
186
190
|
"command_auto_standby",
|
|
187
191
|
"command_sleep",
|
|
188
192
|
"command_center_spread",
|
|
@@ -364,9 +368,13 @@ SOUND_MODE_MAPPING = {
|
|
|
364
368
|
"DOLBY AUDIO - TRUEHD + NEURAL:X",
|
|
365
369
|
"DOLBY AUDIO-DD",
|
|
366
370
|
"DOLBY AUDIO-DD+ +DSUR",
|
|
371
|
+
# Added both variants as we don't know if type is intentional
|
|
372
|
+
"DOLBY AUDIO-DD+ +NERUAL:X",
|
|
367
373
|
"DOLBY AUDIO-DD+ +NEURAL:X",
|
|
368
374
|
"DOLBY AUDIO-DD+",
|
|
375
|
+
"DOLBY AUDIO-DD+",
|
|
369
376
|
"DOLBY AUDIO-DD+DSUR",
|
|
377
|
+
"DOLBY AUDIO-DD+NEURAL:X",
|
|
370
378
|
"DOLBY AUDIO-DSUR",
|
|
371
379
|
"DOLBY AUDIO-TRUEHD",
|
|
372
380
|
"DOLBY AUDIO-TRUEHD+DSUR",
|
|
@@ -391,16 +399,16 @@ SOUND_MODE_MAPPING = {
|
|
|
391
399
|
"MULTI IN + NEURAL:X",
|
|
392
400
|
"NEURAL",
|
|
393
401
|
"STANDARD(DOLBY)",
|
|
394
|
-
"DOLBY AUDIO-DD+NEURAL:X",
|
|
395
|
-
"DOLBY AUDIO-DD+",
|
|
396
|
-
# Added both variants as we don't know if type is intentional
|
|
397
|
-
"DOLBY AUDIO-DD+ +NERUAL:X",
|
|
398
|
-
"DOLBY AUDIO-DD+ +NEURAL:X",
|
|
399
402
|
],
|
|
400
403
|
"DTS SURROUND": [
|
|
401
404
|
"DTS + DOLBY SURROUND",
|
|
402
405
|
"DTS + NEURAL:X",
|
|
403
406
|
"DTS + VIRTUAL:X",
|
|
407
|
+
"DTS HD MSTR",
|
|
408
|
+
"DTS HD",
|
|
409
|
+
"DTS HD+DSUR",
|
|
410
|
+
"DTS HD+NEURAL:X",
|
|
411
|
+
"DTS HD+VIRTUAL:X",
|
|
404
412
|
"DTS NEURAL:X",
|
|
405
413
|
"DTS SURROUND",
|
|
406
414
|
"DTS VIRTUAL:X",
|
|
@@ -411,26 +419,22 @@ SOUND_MODE_MAPPING = {
|
|
|
411
419
|
"DTS-HD",
|
|
412
420
|
"DTS:X MSTR",
|
|
413
421
|
"DTS:X",
|
|
414
|
-
"
|
|
415
|
-
"MULTI CH IN",
|
|
416
|
-
"NEURAL:X",
|
|
417
|
-
"STANDARD(DTS)",
|
|
418
|
-
"VIRTUAL:X",
|
|
419
|
-
"IMAX DTS",
|
|
420
|
-
"IMAX DTS+NEURAL:X",
|
|
421
|
-
"MAX DTS+VIRTUAL:X",
|
|
422
|
+
"DTS:X+VIRTUAL:X",
|
|
422
423
|
"DTS+DSUR",
|
|
423
424
|
"DTS+NEURAL:X",
|
|
424
425
|
"DTS+VIRTUAL:X",
|
|
425
|
-
"DTS HD",
|
|
426
|
-
"DTS HD+DSUR",
|
|
427
|
-
"DTS HD+NEURAL:X",
|
|
428
|
-
"DTS HD+VIRTUAL:X",
|
|
429
|
-
"DTS:X+VIRTUAL:X",
|
|
430
426
|
"IMAX DTS:X",
|
|
431
427
|
"IMAX DTS:X+VIRTUAL:X",
|
|
428
|
+
"IMAX DTS",
|
|
429
|
+
"IMAX DTS+NEURAL:X",
|
|
430
|
+
"M CH IN+DSUR",
|
|
432
431
|
"M CH IN+NEURAL:X",
|
|
433
432
|
"M CH IN+VIRTUAL:X",
|
|
433
|
+
"MAX DTS+VIRTUAL:X",
|
|
434
|
+
"MULTI CH IN",
|
|
435
|
+
"NEURAL:X",
|
|
436
|
+
"STANDARD(DTS)",
|
|
437
|
+
"VIRTUAL:X",
|
|
434
438
|
],
|
|
435
439
|
"AURO3D": ["AURO-3D", "AURO3D"],
|
|
436
440
|
"AURO2DSURR": ["AURO-2D SURROUND", "AURO2DSURR"],
|
|
@@ -541,7 +545,11 @@ COMMAND_DIALOG_ENHANCER = "/goform/formiPhoneAppDirect.xml?PSDEH%20{level}"
|
|
|
541
545
|
COMMAND_HDMI_OUTPUT = "/goform/formiPhoneAppDirect.xml?VSMONI{output}"
|
|
542
546
|
COMMAND_HDMI_AUDIO_DECODE = "/goform/formiPhoneAppDirect.xml?VSAUDIO%20{mode}"
|
|
543
547
|
COMMAND_QUICK_SELECT_MODE = "/goform/formiPhoneAppDirect.xml?MSQUICK{number}"
|
|
544
|
-
COMMAND_QUICK_SELECT_MEMORY = "/goform/formiPhoneAppDirect.xml?MSQUICK{number}"
|
|
548
|
+
COMMAND_QUICK_SELECT_MEMORY = "/goform/formiPhoneAppDirect.xml?MSQUICK{number}%20MEMORY"
|
|
549
|
+
COMMAND_SMART_SELECT_MODE = "/goform/formiPhoneAppDirect.xml?MSSMART{number}" # Marantz
|
|
550
|
+
COMMAND_SMART_SELECT_MEMORY = (
|
|
551
|
+
"/goform/formiPhoneAppDirect.xml?MSSMART{number}%20MEMORY" # Marantz
|
|
552
|
+
)
|
|
545
553
|
COMMAND_AUTO_STANDBY = "/goform/formiPhoneAppDirect.xml?STBY{mode}"
|
|
546
554
|
COMMAND_SLEEP = "/goform/formiPhoneAppDirect.xml?SLP{value}"
|
|
547
555
|
COMMAND_CENTER_SPREAD = "/goform/formiPhoneAppDirect.xml?PSCES%20{mode}"
|
|
@@ -658,6 +666,8 @@ DENONAVR_URLS = ReceiverURLs(
|
|
|
658
666
|
command_hdmi_audio_decode=COMMAND_HDMI_AUDIO_DECODE,
|
|
659
667
|
command_quick_select_mode=COMMAND_QUICK_SELECT_MODE,
|
|
660
668
|
command_quick_select_memory=COMMAND_QUICK_SELECT_MODE,
|
|
669
|
+
command_smart_select_mode=COMMAND_SMART_SELECT_MODE, # Marantz
|
|
670
|
+
command_smart_select_memory=COMMAND_SMART_SELECT_MEMORY, # Marantz
|
|
661
671
|
command_auto_standby=COMMAND_AUTO_STANDBY,
|
|
662
672
|
command_sleep=COMMAND_SLEEP,
|
|
663
673
|
command_center_spread=COMMAND_CENTER_SPREAD,
|
|
@@ -751,6 +761,8 @@ ZONE2_URLS = ReceiverURLs(
|
|
|
751
761
|
command_hdmi_audio_decode=COMMAND_HDMI_AUDIO_DECODE,
|
|
752
762
|
command_quick_select_mode=COMMAND_QUICK_SELECT_MODE,
|
|
753
763
|
command_quick_select_memory=COMMAND_QUICK_SELECT_MEMORY,
|
|
764
|
+
command_smart_select_mode=COMMAND_SMART_SELECT_MODE, # Marantz
|
|
765
|
+
command_smart_select_memory=COMMAND_SMART_SELECT_MEMORY, # Marantz
|
|
754
766
|
command_auto_standby=COMMAND_AUTO_STANDBY,
|
|
755
767
|
command_sleep=COMMAND_SLEEP,
|
|
756
768
|
command_center_spread=COMMAND_CENTER_SPREAD,
|
|
@@ -844,6 +856,8 @@ ZONE3_URLS = ReceiverURLs(
|
|
|
844
856
|
command_hdmi_audio_decode=COMMAND_HDMI_AUDIO_DECODE,
|
|
845
857
|
command_quick_select_mode=COMMAND_QUICK_SELECT_MODE,
|
|
846
858
|
command_quick_select_memory=COMMAND_QUICK_SELECT_MEMORY,
|
|
859
|
+
command_smart_select_mode=COMMAND_SMART_SELECT_MODE, # Marantz
|
|
860
|
+
command_smart_select_memory=COMMAND_SMART_SELECT_MEMORY, # Marantz
|
|
847
861
|
command_auto_standby=COMMAND_AUTO_STANDBY,
|
|
848
862
|
command_sleep=COMMAND_SLEEP,
|
|
849
863
|
command_center_spread=COMMAND_CENTER_SPREAD,
|
|
@@ -992,6 +1006,8 @@ DENONAVR_TELNET_COMMANDS = TelnetCommands(
|
|
|
992
1006
|
command_hdmi_audio_decode="VSAUDIO {mode}",
|
|
993
1007
|
command_quick_select_mode="MSQUICK{number}",
|
|
994
1008
|
command_quick_select_memory="MSQUICK{number} MEMORY",
|
|
1009
|
+
command_smart_select_mode="MSSMART{number}", # Marantz
|
|
1010
|
+
command_smart_select_memory="MSSMART{number} MEMORY", # Marantz
|
|
995
1011
|
command_auto_standby="STBY{mode}",
|
|
996
1012
|
command_sleep="SLP{value}",
|
|
997
1013
|
command_center_spread="PSCES {mode}",
|
|
@@ -1083,6 +1099,8 @@ ZONE2_TELNET_COMMANDS = TelnetCommands(
|
|
|
1083
1099
|
command_hdmi_audio_decode="VSAUDIO {mode}",
|
|
1084
1100
|
command_quick_select_mode="MSQUICK{number}",
|
|
1085
1101
|
command_quick_select_memory="MSQUICK{number} MEMORY",
|
|
1102
|
+
command_smart_select_mode="MSSMART{number}", # Marantz
|
|
1103
|
+
command_smart_select_memory="MSSMART{number} MEMORY", # Marantz
|
|
1086
1104
|
command_auto_standby="STBY{mode}",
|
|
1087
1105
|
command_sleep="SLP{value}",
|
|
1088
1106
|
command_center_spread="PSCES {mode}",
|
|
@@ -1174,6 +1192,8 @@ ZONE3_TELNET_COMMANDS = TelnetCommands(
|
|
|
1174
1192
|
command_hdmi_audio_decode="VSAUDIO {mode}",
|
|
1175
1193
|
command_quick_select_mode="MSQUICK{number}",
|
|
1176
1194
|
command_quick_select_memory="MSQUICK{number} MEMORY",
|
|
1195
|
+
command_smart_select_mode="MSSMART{number}", # Marantz
|
|
1196
|
+
command_smart_select_memory="MSSMART{number} MEMORY", # Marantz
|
|
1177
1197
|
command_auto_standby="STBY{mode}",
|
|
1178
1198
|
command_sleep="SLP{value}",
|
|
1179
1199
|
command_center_spread="PSCES {mode}",
|
denonavr/dirac.py
CHANGED
|
@@ -8,7 +8,7 @@ This module implements the Audyssey settings of Denon AVR receivers.
|
|
|
8
8
|
"""
|
|
9
9
|
|
|
10
10
|
import logging
|
|
11
|
-
from typing import Optional
|
|
11
|
+
from typing import Optional, get_args
|
|
12
12
|
|
|
13
13
|
import attr
|
|
14
14
|
|
|
@@ -31,6 +31,7 @@ class DenonAVRDirac(DenonAVRFoundation):
|
|
|
31
31
|
_dirac_filter: Optional[str] = attr.ib(
|
|
32
32
|
converter=attr.converters.optional(str), default=None
|
|
33
33
|
)
|
|
34
|
+
_dirac_filters = get_args(DiracFilters)
|
|
34
35
|
|
|
35
36
|
def setup(self) -> None:
|
|
36
37
|
"""Ensure that the instance is initialized."""
|
|
@@ -66,7 +67,7 @@ class DenonAVRDirac(DenonAVRFoundation):
|
|
|
66
67
|
##########
|
|
67
68
|
async def async_dirac_filter(self, dirac_filter: DiracFilters) -> None:
|
|
68
69
|
"""Set Dirac filter."""
|
|
69
|
-
if dirac_filter not in
|
|
70
|
+
if dirac_filter not in self._dirac_filters:
|
|
70
71
|
raise AvrCommandError("Invalid Dirac filter")
|
|
71
72
|
|
|
72
73
|
mapped_filter = DIRAC_FILTER_MAP[dirac_filter]
|
denonavr/foundation.py
CHANGED
|
@@ -39,6 +39,7 @@ from .const import (
|
|
|
39
39
|
DIMMER_MODE_MAP_LABELS,
|
|
40
40
|
ECO_MODE_MAP,
|
|
41
41
|
ECO_MODE_MAP_LABELS,
|
|
42
|
+
HDMI_OUTPUT_MAP,
|
|
42
43
|
HDMI_OUTPUT_MAP_LABELS,
|
|
43
44
|
MAIN_ZONE,
|
|
44
45
|
POWER_STATES,
|
|
@@ -153,6 +154,7 @@ class DenonAVRDeviceInfo:
|
|
|
153
154
|
_dimmer: Optional[str] = attr.ib(
|
|
154
155
|
converter=attr.converters.optional(str), default=None
|
|
155
156
|
)
|
|
157
|
+
_dimmer_modes = get_args(DimmerModes)
|
|
156
158
|
_auto_standby: Optional[str] = attr.ib(
|
|
157
159
|
converter=attr.converters.optional(str), default=None
|
|
158
160
|
)
|
|
@@ -166,9 +168,11 @@ class DenonAVRDeviceInfo:
|
|
|
166
168
|
_eco_mode: Optional[str] = attr.ib(
|
|
167
169
|
converter=attr.converters.optional(str), default=None
|
|
168
170
|
)
|
|
171
|
+
_eco_modes = get_args(EcoModes)
|
|
169
172
|
_hdmi_output: Optional[str] = attr.ib(
|
|
170
173
|
converter=attr.converters.optional(str), default=None
|
|
171
174
|
)
|
|
175
|
+
_hdmi_outputs = get_args(HDMIOutputs)
|
|
172
176
|
_hdmi_audio_decode: Optional[str] = attr.ib(
|
|
173
177
|
converter=attr.converters.optional(str), default=None
|
|
174
178
|
)
|
|
@@ -308,8 +312,8 @@ class DenonAVRDeviceInfo:
|
|
|
308
312
|
self, zone: str, event: str, parameter: str
|
|
309
313
|
) -> None:
|
|
310
314
|
"""Handle a delay change event."""
|
|
311
|
-
if event == "PS" and parameter[0:
|
|
312
|
-
self._delay = int(parameter[
|
|
315
|
+
if event == "PS" and parameter[0:5] == "DELAY":
|
|
316
|
+
self._delay = int(parameter[6:])
|
|
313
317
|
|
|
314
318
|
async def _async_eco_mode_callback(
|
|
315
319
|
self, zone: str, event: str, parameter: str
|
|
@@ -385,7 +389,8 @@ class DenonAVRDeviceInfo:
|
|
|
385
389
|
self, zone: str, event: str, parameter: str
|
|
386
390
|
) -> None:
|
|
387
391
|
"""Handle a delay time change event."""
|
|
388
|
-
|
|
392
|
+
# do not match "DELAY" as it's another event
|
|
393
|
+
if event != "PS" or parameter[0:3] != "DEL" or parameter[0:5] == "DELAY":
|
|
389
394
|
return
|
|
390
395
|
|
|
391
396
|
self._delay_time = int(parameter[4:])
|
|
@@ -1199,7 +1204,7 @@ class DenonAVRDeviceInfo:
|
|
|
1199
1204
|
|
|
1200
1205
|
async def async_dimmer(self, mode: DimmerModes) -> None:
|
|
1201
1206
|
"""Set dimmer mode on receiver via HTTP get command."""
|
|
1202
|
-
if mode not in
|
|
1207
|
+
if mode not in self._dimmer_modes:
|
|
1203
1208
|
raise AvrCommandError("Invalid dimmer mode")
|
|
1204
1209
|
|
|
1205
1210
|
mapped_mode = DIMMER_MODE_MAP[mode]
|
|
@@ -1397,15 +1402,19 @@ class DenonAVRDeviceInfo:
|
|
|
1397
1402
|
raise AvrCommandError("Quick select number must be between 1 and 5")
|
|
1398
1403
|
|
|
1399
1404
|
if self.telnet_available:
|
|
1405
|
+
if "denon" in self.manufacturer.lower():
|
|
1406
|
+
command = self.telnet_commands.command_quick_select_memory
|
|
1407
|
+
else:
|
|
1408
|
+
command = self.telnet_commands.command_smart_select_memory
|
|
1400
1409
|
await self.telnet_api.async_send_commands(
|
|
1401
|
-
|
|
1402
|
-
number=quick_select_number
|
|
1403
|
-
)
|
|
1410
|
+
command.format(number=quick_select_number)
|
|
1404
1411
|
)
|
|
1405
1412
|
else:
|
|
1406
|
-
|
|
1407
|
-
self.urls.command_quick_select_mode
|
|
1408
|
-
|
|
1413
|
+
if "denon" in self.manufacturer.lower():
|
|
1414
|
+
command = self.urls.command_quick_select_mode
|
|
1415
|
+
else:
|
|
1416
|
+
command = self.urls.command_smart_select_mode
|
|
1417
|
+
await self.api.async_get_command(command.format(number=quick_select_number))
|
|
1409
1418
|
|
|
1410
1419
|
async def async_quick_select_memory(self, quick_select_number: int) -> None:
|
|
1411
1420
|
"""
|
|
@@ -1417,15 +1426,19 @@ class DenonAVRDeviceInfo:
|
|
|
1417
1426
|
raise AvrCommandError("Quick select number must be between 1 and 5")
|
|
1418
1427
|
|
|
1419
1428
|
if self.telnet_available:
|
|
1429
|
+
if "denon" in self.manufacturer.lower():
|
|
1430
|
+
command = self.telnet_commands.command_quick_select_mode
|
|
1431
|
+
else:
|
|
1432
|
+
command = self.telnet_commands.command_smart_select_mode
|
|
1420
1433
|
await self.telnet_api.async_send_commands(
|
|
1421
|
-
|
|
1422
|
-
number=quick_select_number
|
|
1423
|
-
)
|
|
1434
|
+
command.format(number=quick_select_number)
|
|
1424
1435
|
)
|
|
1425
1436
|
else:
|
|
1426
|
-
|
|
1427
|
-
self.urls.command_quick_select_memory
|
|
1428
|
-
|
|
1437
|
+
if "denon" in self.manufacturer.lower():
|
|
1438
|
+
command = self.urls.command_quick_select_memory
|
|
1439
|
+
else:
|
|
1440
|
+
command = self.urls.command_smart_select_memory
|
|
1441
|
+
await self.api.async_get_command(command.format(number=quick_select_number))
|
|
1429
1442
|
|
|
1430
1443
|
async def async_delay_up(self) -> None:
|
|
1431
1444
|
"""Delay up on receiver via HTTP get command."""
|
|
@@ -1447,7 +1460,7 @@ class DenonAVRDeviceInfo:
|
|
|
1447
1460
|
|
|
1448
1461
|
async def async_eco_mode(self, mode: EcoModes) -> None:
|
|
1449
1462
|
"""Set Eco mode."""
|
|
1450
|
-
if mode not in
|
|
1463
|
+
if mode not in self._eco_modes:
|
|
1451
1464
|
raise AvrCommandError("Invalid Eco mode")
|
|
1452
1465
|
|
|
1453
1466
|
mapped_mode = ECO_MODE_MAP[mode]
|
|
@@ -1462,10 +1475,10 @@ class DenonAVRDeviceInfo:
|
|
|
1462
1475
|
|
|
1463
1476
|
async def async_hdmi_output(self, output: HDMIOutputs) -> None:
|
|
1464
1477
|
"""Set HDMI output."""
|
|
1465
|
-
if output not in
|
|
1478
|
+
if output not in self._hdmi_outputs:
|
|
1466
1479
|
raise AvrCommandError("Invalid HDMI output mode")
|
|
1467
1480
|
|
|
1468
|
-
mapped_output =
|
|
1481
|
+
mapped_output = HDMI_OUTPUT_MAP[output]
|
|
1469
1482
|
if self.telnet_available:
|
|
1470
1483
|
await self.telnet_api.async_send_commands(
|
|
1471
1484
|
self.telnet_commands.command_hdmi_output.format(output=mapped_output)
|
denonavr/soundmode.py
CHANGED
|
@@ -229,8 +229,8 @@ class DenonAVRSoundMode(DenonAVRFoundation):
|
|
|
229
229
|
if self._device.zone != zone:
|
|
230
230
|
return
|
|
231
231
|
|
|
232
|
-
# QUICK
|
|
233
|
-
if parameter.startswith("QUICK"):
|
|
232
|
+
# QUICK/SMART are not sound modes
|
|
233
|
+
if parameter.startswith("QUICK") or parameter.startswith("SMART"):
|
|
234
234
|
return
|
|
235
235
|
|
|
236
236
|
self._sound_mode_raw = parameter
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
denonavr/__init__.py,sha256=XIZmlMTDfp6bJzeFlhfUaTmfz0pNiyaNyjW9yzTfEbE,1325
|
|
2
|
+
denonavr/api.py,sha256=5LknKLIXZVPuQ8EYqcf6vAxo4M8ll8wGkoDM40b0sZ4,32555
|
|
3
|
+
denonavr/appcommand.py,sha256=H37VK4n-yW0ISvR1hfX8G4udQtGASoY44QNaXtLSidE,7784
|
|
4
|
+
denonavr/audyssey.py,sha256=d7mSkRiMvrZMtCzQdixfJuLmkuZeSi1w1GgQ_1fm-j8,14655
|
|
5
|
+
denonavr/const.py,sha256=l2WXqSIPxGAJwlP4tJ8ay3dZyPWXiT3_nhlApQY2hRE,55456
|
|
6
|
+
denonavr/decorators.py,sha256=tLoVjGtDmN75fhwCgNREMGjbB6varDERnYlrhC6yIZ8,2733
|
|
7
|
+
denonavr/denonavr.py,sha256=lN_xwG9sa1TYCZQi24FRq4p4jV6GaOuDefYGuLvvXGI,39823
|
|
8
|
+
denonavr/dirac.py,sha256=bRAxdfHRCfYT7nw68ggegXbMsMpmaoqh2foz5qh_Ikw,2595
|
|
9
|
+
denonavr/exceptions.py,sha256=naP7MCuNH98rv7y_lDdO7ayyvQGywnsfpHhW-o9tKeo,1725
|
|
10
|
+
denonavr/foundation.py,sha256=rFYntu5VBJqJEv5da9bgC9W8pG_xyBBiO6IyVUlUmLc,73593
|
|
11
|
+
denonavr/input.py,sha256=kbKPePkdFHQSHKzOvAYudeSyJiRrUh0PxIOkG38kDUo,43050
|
|
12
|
+
denonavr/soundmode.py,sha256=ONMVzD4FPM8PvNrLIG_HjJeAaM5DNp4jvC2mGqXzEI8,44392
|
|
13
|
+
denonavr/ssdp.py,sha256=4gyvN0yo9qSnJ7l6iJmSC_5qW45Fq2Tt2RACpxFMSqg,7839
|
|
14
|
+
denonavr/tonecontrol.py,sha256=DfHzziEeLdYiyTbJKcGk5cCPTvKBgjMqQReYp0qoF0U,12474
|
|
15
|
+
denonavr/volume.py,sha256=qnsYr4AWfCu8MQH9mdw1qsaLo3-Sq1mdzreYQDhaTXQ,22260
|
|
16
|
+
denonavr-1.1.2.dist-info/licenses/LICENSE,sha256=hcKXAoZnRee1NRWnxTpKyjKCz4aHhw76sZUZoB3qPTw,1068
|
|
17
|
+
denonavr-1.1.2.dist-info/METADATA,sha256=Y73wPSRIMHvVbx89acau-UY_hWDbgJiuTOH1Hl3hJE4,4707
|
|
18
|
+
denonavr-1.1.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
+
denonavr-1.1.2.dist-info/top_level.txt,sha256=GKwe6bOaw_R68BR7x-C7VD3bDFKKNBf0pRkWywUZWIs,9
|
|
20
|
+
denonavr-1.1.2.dist-info/RECORD,,
|
denonavr-1.1.1.dist-info/RECORD
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
denonavr/__init__.py,sha256=NC9U9u1IB229tP7SjZIkMK2giRp32jsmJr-dU4WqwjU,1325
|
|
2
|
-
denonavr/api.py,sha256=SaJls_9yQ8TyklzWwflubwy6oJki1NYIQGeeHNf-3ss,32530
|
|
3
|
-
denonavr/appcommand.py,sha256=H37VK4n-yW0ISvR1hfX8G4udQtGASoY44QNaXtLSidE,7784
|
|
4
|
-
denonavr/audyssey.py,sha256=d7mSkRiMvrZMtCzQdixfJuLmkuZeSi1w1GgQ_1fm-j8,14655
|
|
5
|
-
denonavr/const.py,sha256=HwdM3x-Fa3DxOs1-Tpg28Z9LSCRpMoI8-pSOhdmhx64,54261
|
|
6
|
-
denonavr/decorators.py,sha256=tLoVjGtDmN75fhwCgNREMGjbB6varDERnYlrhC6yIZ8,2733
|
|
7
|
-
denonavr/denonavr.py,sha256=lN_xwG9sa1TYCZQi24FRq4p4jV6GaOuDefYGuLvvXGI,39823
|
|
8
|
-
denonavr/dirac.py,sha256=my8E9r-t8u579chnyIhJb1afNme73bQGCxj3D3TQX8g,2534
|
|
9
|
-
denonavr/exceptions.py,sha256=naP7MCuNH98rv7y_lDdO7ayyvQGywnsfpHhW-o9tKeo,1725
|
|
10
|
-
denonavr/foundation.py,sha256=1_fpV9pA0Jz36Rnieowz4myqpAdaCaNwP74QTdMpSgk,72785
|
|
11
|
-
denonavr/input.py,sha256=kbKPePkdFHQSHKzOvAYudeSyJiRrUh0PxIOkG38kDUo,43050
|
|
12
|
-
denonavr/soundmode.py,sha256=NFNQhTqXLBfRHPmorRaWf49nCALotXOeCUK2pcjl9cU,44353
|
|
13
|
-
denonavr/ssdp.py,sha256=4gyvN0yo9qSnJ7l6iJmSC_5qW45Fq2Tt2RACpxFMSqg,7839
|
|
14
|
-
denonavr/tonecontrol.py,sha256=DfHzziEeLdYiyTbJKcGk5cCPTvKBgjMqQReYp0qoF0U,12474
|
|
15
|
-
denonavr/volume.py,sha256=qnsYr4AWfCu8MQH9mdw1qsaLo3-Sq1mdzreYQDhaTXQ,22260
|
|
16
|
-
denonavr-1.1.1.dist-info/licenses/LICENSE,sha256=hcKXAoZnRee1NRWnxTpKyjKCz4aHhw76sZUZoB3qPTw,1068
|
|
17
|
-
denonavr-1.1.1.dist-info/METADATA,sha256=tWBGzpk-Q5Lhd_gEBsO2BFRDESPF9WkR7JvO4lR96Cc,4707
|
|
18
|
-
denonavr-1.1.1.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
|
19
|
-
denonavr-1.1.1.dist-info/top_level.txt,sha256=GKwe6bOaw_R68BR7x-C7VD3bDFKKNBf0pRkWywUZWIs,9
|
|
20
|
-
denonavr-1.1.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|