├── .github ├── dependabot.yml ├── stale.yml └── workflows │ ├── python-code-format.yml │ ├── python-publish-pypi.yml │ └── python-tests.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── denonavr ├── __init__.py ├── api.py ├── appcommand.py ├── audyssey.py ├── const.py ├── decorators.py ├── denonavr.py ├── dirac.py ├── exceptions.py ├── foundation.py ├── input.py ├── soundmode.py ├── ssdp.py ├── tonecontrol.py └── volume.py ├── doc └── XML_data_dump.txt ├── pyproject.toml ├── requirements.txt ├── setup.cfg ├── test-requirements.txt ├── tests ├── __init__.py ├── test_const.py ├── test_denonavr.py ├── test_ssdp.py └── xml │ ├── AV7703-AppCommand-setup-8080.xml │ ├── AV7703-AppCommand-update-8080.xml │ ├── AV7703-AppCommand-update-soundmode-8080.xml │ ├── AV7703-AppCommand-update-tonecontrol-8080.xml │ ├── AV7703-Deviceinfo-8080.xml │ ├── AVC-8500H-AppCommand-setup-8080.xml │ ├── AVC-8500H-AppCommand-update-8080.xml │ ├── AVC-8500H-AppCommand-update-soundmode-8080.xml │ ├── AVC-8500H-AppCommand-update-tonecontrol-8080.xml │ ├── AVC-8500H-Deviceinfo-8080.xml │ ├── AVC-A10H-AppCommand-setup-8080.xml │ ├── AVC-A10H-AppCommand-update-8080.xml │ ├── AVC-A10H-AppCommand-update-soundmode-8080.xml │ ├── AVC-A10H-AppCommand-update-tonecontrol-8080.xml │ ├── AVC-A10H-Deviceinfo-8080.xml │ ├── AVC-X3700H-AppCommand-setup-8080.xml │ ├── AVC-X3700H-AppCommand-update-8080.xml │ ├── AVC-X3700H-AppCommand-update-soundmode-8080.xml │ ├── AVC-X3700H-AppCommand-update-tonecontrol-8080.xml │ ├── AVC-X3700H-Deviceinfo-8080.xml │ ├── AVR-1713-AppCommand-setup.xml │ ├── AVR-1713-AppCommand-update-soundmode.xml │ ├── AVR-1713-AppCommand-update-tonecontrol.xml │ ├── AVR-1713-AppCommand-update.xml │ ├── AVR-1713-Deviceinfo.xml │ ├── AVR-1713-formMainZone_MainZoneXml.xml │ ├── AVR-1713-formMainZone_MainZoneXmlStatus.xml │ ├── AVR-1713-formNetAudio_StatusXml.xml │ ├── AVR-1713-formTuner_HdXml.xml │ ├── AVR-1713-formTuner_TunerXml.xml │ ├── AVR-1713-formZone2_Zone2XmlStatus.xml │ ├── AVR-1713-formZone3_Zone3XmlStatus.xml │ ├── AVR-1912-AppCommand-setup.xml │ ├── AVR-1912-AppCommand-update-soundmode.xml │ ├── AVR-1912-AppCommand-update-tonecontrol.xml │ ├── AVR-1912-AppCommand-update.xml │ ├── AVR-1912-Deviceinfo.xml │ ├── AVR-1912-formMainZone_MainZoneXml.xml │ ├── AVR-1912-formMainZone_MainZoneXmlStatus.xml │ ├── AVR-1912-formNetAudio_StatusXml.xml │ ├── AVR-2312CI-AppCommand-setup.xml │ ├── AVR-2312CI-AppCommand-update-soundmode.xml │ ├── AVR-2312CI-AppCommand-update-tonecontrol.xml │ ├── AVR-2312CI-AppCommand-update.xml │ ├── AVR-2312CI-Deviceinfo.xml │ ├── AVR-2312CI-formMainZone_MainZoneXml.xml │ ├── AVR-2312CI-formMainZone_MainZoneXmlStatus.xml │ ├── AVR-2312CI-formNetAudio_StatusXml.xml │ ├── AVR-3311CI-AppCommand-setup.xml │ ├── AVR-3311CI-AppCommand-update-soundmode.xml │ ├── AVR-3311CI-AppCommand-update-tonecontrol.xml │ ├── AVR-3311CI-AppCommand-update.xml │ ├── AVR-3311CI-Deviceinfo.xml │ ├── AVR-3311CI-formMainZone_MainZoneXml.xml │ ├── AVR-3311CI-formMainZone_MainZoneXmlStatus.xml │ ├── AVR-3311CI-formNetAudio_StatusXml.xml │ ├── AVR-3312-AppCommand-setup.xml │ ├── AVR-3312-AppCommand-update-soundmode.xml │ ├── AVR-3312-AppCommand-update-tonecontrol.xml │ ├── AVR-3312-AppCommand-update.xml │ ├── AVR-3312-Deviceinfo.xml │ ├── AVR-3312-formMainZone_MainZoneXml.xml │ ├── AVR-3312-formMainZone_MainZoneXmlStatus.xml │ ├── AVR-3312-formNetAudio_StatusXml.xml │ ├── AVR-3312-formTuner_HdXml.xml │ ├── AVR-3312-formTuner_TunerXml.xml │ ├── AVR-3312-formZone2_Zone2XmlStatus.xml │ ├── AVR-3312-formZone3_Zone3XmlStatus.xml │ ├── AVR-3313-AppCommand-setup.xml │ ├── AVR-3313-AppCommand-update-soundmode.xml │ ├── AVR-3313-AppCommand-update-tonecontrol.xml │ ├── AVR-3313-AppCommand-update.xml │ ├── AVR-3313-Deviceinfo.xml │ ├── AVR-3313-formMainZone_MainZoneXml.xml │ ├── AVR-3313-formMainZone_MainZoneXmlStatus.xml │ ├── AVR-3313-formNetAudio_StatusXml.xml │ ├── AVR-3313-formTuner_HdXml.xml │ ├── AVR-3313-formTuner_TunerXml.xml │ ├── AVR-3313-formZone2_Zone2XmlStatus.xml │ ├── AVR-3313-formZone3_Zone3XmlStatus.xml │ ├── AVR-4810-AppCommand-setup.xml │ ├── AVR-4810-AppCommand-update-soundmode.xml │ ├── AVR-4810-AppCommand-update-tonecontrol.xml │ ├── AVR-4810-AppCommand-update.xml │ ├── AVR-4810-Deviceinfo.xml │ ├── AVR-4810-formMainZone_MainZoneXml.xml │ ├── AVR-4810-formMainZone_MainZoneXmlStatus.xml │ ├── AVR-4810-formNetAudio_StatusXml.xml │ ├── AVR-4810-formTuner_HdXml.xml │ ├── AVR-4810-formTuner_TunerXml.xml │ ├── AVR-4810-formZone2_Zone2XmlStatus.xml │ ├── AVR-4810-formZone3_Zone3XmlStatus.xml │ ├── AVR-X1100W-AppCommand-setup.xml │ ├── AVR-X1100W-AppCommand-update-soundmode.xml │ ├── AVR-X1100W-AppCommand-update-tonecontrol.xml │ ├── AVR-X1100W-AppCommand-update.xml │ ├── AVR-X1100W-Deviceinfo.xml │ ├── AVR-X1100W-formMainZone_MainZoneXml.xml │ ├── AVR-X1100W-formMainZone_MainZoneXmlStatus.xml │ ├── AVR-X1100W-formNetAudio_StatusXml.xml │ ├── AVR-X1100W-formTuner_HdXml.xml │ ├── AVR-X1100W-formTuner_TunerXml.xml │ ├── AVR-X1100W-formZone2_Zone2XmlStatus.xml │ ├── AVR-X1100W-formZone3_Zone3XmlStatus.xml │ ├── AVR-X1600H_upnp.xml │ ├── AVR-X2000-2-AppCommand-setup.xml │ ├── AVR-X2000-2-AppCommand-update-soundmode.xml │ ├── AVR-X2000-2-AppCommand-update-tonecontrol.xml │ ├── AVR-X2000-2-AppCommand-update.xml │ ├── AVR-X2000-2-Deviceinfo.xml │ ├── AVR-X2000-2-formMainZone_MainZoneXml.xml │ ├── AVR-X2000-2-formMainZone_MainZoneXmlStatus.xml │ ├── AVR-X2000-2-formNetAudio_StatusXml.xml │ ├── AVR-X2000-AppCommand-setup.xml │ ├── AVR-X2000-AppCommand-update-soundmode.xml │ ├── AVR-X2000-AppCommand-update-tonecontrol.xml │ ├── AVR-X2000-AppCommand-update.xml │ ├── AVR-X2000-Deviceinfo.xml │ ├── AVR-X2000-formMainZone_MainZoneXml.xml │ ├── AVR-X2000-formMainZone_MainZoneXmlStatus.xml │ ├── AVR-X2000-formNetAudio_StatusXml.xml │ ├── AVR-X2000-formTuner_HdXml.xml │ ├── AVR-X2000-formTuner_TunerXml.xml │ ├── AVR-X2000-formZone2_Zone2XmlStatus.xml │ ├── AVR-X2000-formZone3_Zone3XmlStatus.xml │ ├── AVR-X2100W-2-AppCommand-setup.xml │ ├── AVR-X2100W-2-AppCommand-update-soundmode.xml │ ├── AVR-X2100W-2-AppCommand-update-tonecontrol.xml │ ├── AVR-X2100W-2-AppCommand-update.xml │ ├── AVR-X2100W-2-Deviceinfo.xml │ ├── AVR-X2100W-2-formMainZone_MainZoneXml.xml │ ├── AVR-X2100W-2-formMainZone_MainZoneXmlStatus.xml │ ├── AVR-X2100W-2-formNetAudio_StatusXml.xml │ ├── AVR-X2100W-AppCommand-setup.xml │ ├── AVR-X2100W-AppCommand-update-soundmode.xml │ ├── AVR-X2100W-AppCommand-update-tonecontrol.xml │ ├── AVR-X2100W-AppCommand-update.xml │ ├── AVR-X2100W-formMainZone_MainZoneXml.xml │ ├── AVR-X2100W-formMainZone_MainZoneXmlStatus.xml │ ├── AVR-X2100W-formNetAudio_StatusXml.xml │ ├── AVR-X4000-AppCommand-setup.xml │ ├── AVR-X4000-AppCommand-update-soundmode.xml │ ├── AVR-X4000-AppCommand-update-tonecontrol.xml │ ├── AVR-X4000-AppCommand-update.xml │ ├── AVR-X4000-Deviceinfo.xml │ ├── AVR-X4000-formMainZone_MainZoneXml.xml │ ├── AVR-X4000-formMainZone_MainZoneXmlStatus.xml │ ├── AVR-X4000-formNetAudio_StatusXml.xml │ ├── AVR-X4000-formTuner_HdXml.xml │ ├── AVR-X4000-formTuner_TunerXml.xml │ ├── AVR-X4000-formZone2_Zone2XmlStatus.xml │ ├── AVR-X4000-formZone3_Zone3XmlStatus.xml │ ├── AVR-X4100W-AppCommand-setup.xml │ ├── AVR-X4100W-AppCommand-update-soundmode.xml │ ├── AVR-X4100W-AppCommand-update-tonecontrol.xml │ ├── AVR-X4100W-AppCommand-update.xml │ ├── AVR-X4100W-Deviceinfo.xml │ ├── AVR-X4100W-formMainZone_MainZoneXml.xml │ ├── AVR-X4100W-formMainZone_MainZoneXmlStatus.xml │ ├── AVR-X4100W-formNetAudio_StatusXml.xml │ ├── AVR-X4300H-AppCommand-setup-8080.xml │ ├── AVR-X4300H-AppCommand-update-8080.xml │ ├── AVR-X4300H-AppCommand-update-soundmode-8080.xml │ ├── AVR-X4300H-AppCommand-update-tonecontrol-8080.xml │ ├── AVR-X4300H-Deviceinfo-8080.xml │ ├── M-CR510-2-AppCommand-setup.xml │ ├── M-CR510-2-AppCommand-update-soundmode.xml │ ├── M-CR510-2-AppCommand-update-tonecontrol.xml │ ├── M-CR510-2-AppCommand-update.xml │ ├── M-CR510-2-Deviceinfo.xml │ ├── M-CR510-2-formMainZone_MainZoneXml.xml │ ├── M-CR510-2-formMainZone_MainZoneXmlStatus.xml │ ├── M-CR510-2-formNetAudio_StatusXml.xml │ ├── M-CR510-2-formTuner_HdXml.xml │ ├── M-CR510-2-formTuner_TunerXml.xml │ ├── M-CR510-AppCommand-setup.xml │ ├── M-CR510-AppCommand-update-soundmode.xml │ ├── M-CR510-AppCommand-update-tonecontrol.xml │ ├── M-CR510-AppCommand-update.xml │ ├── M-CR510-Deviceinfo.xml │ ├── M-CR510-formMainZone_MainZoneXml.xml │ ├── M-CR510-formMainZone_MainZoneXmlStatus.xml │ ├── M-CR510-formNetAudio_StatusXml.xml │ ├── M-CR510-formTuner_HdXml.xml │ ├── M-CR510-formTuner_TunerXml.xml │ ├── M-CR603-AppCommand-setup.xml │ ├── M-CR603-AppCommand-update-soundmode.xml │ ├── M-CR603-AppCommand-update-tonecontrol.xml │ ├── M-CR603-AppCommand-update.xml │ ├── M-CR603-Deviceinfo.xml │ ├── M-CR603-formMainZone_MainZoneXml.xml │ ├── M-CR603-formMainZone_MainZoneXmlStatus.xml │ ├── M-CR603-formNetAudio_StatusXml.xml │ ├── M-CR603-formTuner_HdXml.xml │ ├── M-CR603-formTuner_TunerXml.xml │ ├── M-CR603-formZone2_Zone2XmlStatus.xml │ ├── M-CR603-formZone3_Zone3XmlStatus.xml │ ├── M-RC610-AppCommand-setup.xml │ ├── M-RC610-AppCommand-update-soundmode.xml │ ├── M-RC610-AppCommand-update-tonecontrol.xml │ ├── M-RC610-AppCommand-update.xml │ ├── M-RC610-Deviceinfo.xml │ ├── M-RC610-formMainZone_MainZoneXml.xml │ ├── M-RC610-formMainZone_MainZoneXmlStatus.xml │ ├── M-RC610-formNetAudio_StatusXml.xml │ ├── M-RC610-formTuner_TunerXml.xml │ ├── NR1604-AppCommand-setup.xml │ ├── NR1604-AppCommand-update-soundmode.xml │ ├── NR1604-AppCommand-update-tonecontrol.xml │ ├── NR1604-AppCommand-update.xml │ ├── NR1604-Deviceinfo.xml │ ├── NR1604-formMainZone_MainZoneXml.xml │ ├── NR1604-formMainZone_MainZoneXmlStatus.xml │ ├── NR1604-formNetAudio_StatusXml.xml │ ├── NR1604-formTuner_HdXml.xml │ ├── NR1604-formTuner_TunerXml.xml │ ├── NR1604-formZone2_Zone2XmlStatus.xml │ ├── NR1604-formZone3_Zone3XmlStatus.xml │ ├── NR1609-AppCommand-setup-8080.xml │ ├── NR1609-AppCommand-update-8080.xml │ ├── NR1609-AppCommand-update-soundmode-8080.xml │ ├── NR1609-AppCommand-update-tonecontrol-8080.xml │ ├── NR1609-Deviceinfo-8080.xml │ ├── SR5008-AppCommand-setup.xml │ ├── SR5008-AppCommand-update-soundmode.xml │ ├── SR5008-AppCommand-update-tonecontrol.xml │ ├── SR5008-AppCommand-update.xml │ ├── SR5008-Deviceinfo.xml │ ├── SR5008-formMainZone_MainZoneXml.xml │ ├── SR5008-formMainZone_MainZoneXmlStatus.xml │ ├── SR5008-formNetAudio_StatusXml.xml │ ├── SR5008-formTuner_HdXml.xml │ ├── SR5008-formTuner_TunerXml.xml │ ├── SR6011-AppCommand-setup.xml │ ├── SR6011-AppCommand-update-soundmode.xml │ ├── SR6011-AppCommand-update-tonecontrol.xml │ ├── SR6011-AppCommand-update.xml │ ├── SR6011-Deviceinfo.xml │ ├── SR6011-formMainZone_MainZoneXml.xml │ ├── SR6011-formMainZone_MainZoneXmlStatus.xml │ ├── SR6011-formNetAudio_StatusXml.xml │ ├── SR6011-formTuner_HdXml.xml │ ├── SR6011-formTuner_TunerXml.xml │ ├── SR6011-formZone2_Zone2XmlStatus.xml │ ├── SR6011-formZone3_Zone3XmlStatus.xml │ ├── SR6012-AppCommand-setup-8080.xml │ ├── SR6012-AppCommand-update-8080.xml │ ├── SR6012-AppCommand-update-soundmode-8080.xml │ ├── SR6012-AppCommand-update-tonecontrol-8080.xml │ └── SR6012-Deviceinfo-8080.xml └── tox.ini /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/python-code-format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/.github/workflows/python-code-format.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/.github/workflows/python-publish-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/python-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/.github/workflows/python-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/README.md -------------------------------------------------------------------------------- /denonavr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/denonavr/__init__.py -------------------------------------------------------------------------------- /denonavr/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/denonavr/api.py -------------------------------------------------------------------------------- /denonavr/appcommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/denonavr/appcommand.py -------------------------------------------------------------------------------- /denonavr/audyssey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/denonavr/audyssey.py -------------------------------------------------------------------------------- /denonavr/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/denonavr/const.py -------------------------------------------------------------------------------- /denonavr/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/denonavr/decorators.py -------------------------------------------------------------------------------- /denonavr/denonavr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/denonavr/denonavr.py -------------------------------------------------------------------------------- /denonavr/dirac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/denonavr/dirac.py -------------------------------------------------------------------------------- /denonavr/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/denonavr/exceptions.py -------------------------------------------------------------------------------- /denonavr/foundation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/denonavr/foundation.py -------------------------------------------------------------------------------- /denonavr/input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/denonavr/input.py -------------------------------------------------------------------------------- /denonavr/soundmode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/denonavr/soundmode.py -------------------------------------------------------------------------------- /denonavr/ssdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/denonavr/ssdp.py -------------------------------------------------------------------------------- /denonavr/tonecontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/denonavr/tonecontrol.py -------------------------------------------------------------------------------- /denonavr/volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/denonavr/volume.py -------------------------------------------------------------------------------- /doc/XML_data_dump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/doc/XML_data_dump.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/setup.cfg -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/test_const.py -------------------------------------------------------------------------------- /tests/test_denonavr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/test_denonavr.py -------------------------------------------------------------------------------- /tests/test_ssdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/test_ssdp.py -------------------------------------------------------------------------------- /tests/xml/AV7703-AppCommand-setup-8080.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AV7703-AppCommand-setup-8080.xml -------------------------------------------------------------------------------- /tests/xml/AV7703-AppCommand-update-8080.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AV7703-AppCommand-update-8080.xml -------------------------------------------------------------------------------- /tests/xml/AV7703-AppCommand-update-soundmode-8080.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AV7703-AppCommand-update-soundmode-8080.xml -------------------------------------------------------------------------------- /tests/xml/AV7703-AppCommand-update-tonecontrol-8080.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AV7703-AppCommand-update-tonecontrol-8080.xml -------------------------------------------------------------------------------- /tests/xml/AV7703-Deviceinfo-8080.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AV7703-Deviceinfo-8080.xml -------------------------------------------------------------------------------- /tests/xml/AVC-8500H-AppCommand-setup-8080.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVC-8500H-AppCommand-setup-8080.xml -------------------------------------------------------------------------------- /tests/xml/AVC-8500H-AppCommand-update-8080.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVC-8500H-AppCommand-update-8080.xml -------------------------------------------------------------------------------- /tests/xml/AVC-8500H-AppCommand-update-soundmode-8080.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVC-8500H-AppCommand-update-soundmode-8080.xml -------------------------------------------------------------------------------- /tests/xml/AVC-8500H-AppCommand-update-tonecontrol-8080.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVC-8500H-AppCommand-update-tonecontrol-8080.xml -------------------------------------------------------------------------------- /tests/xml/AVC-8500H-Deviceinfo-8080.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVC-8500H-Deviceinfo-8080.xml -------------------------------------------------------------------------------- /tests/xml/AVC-A10H-AppCommand-setup-8080.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVC-A10H-AppCommand-setup-8080.xml -------------------------------------------------------------------------------- /tests/xml/AVC-A10H-AppCommand-update-8080.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVC-A10H-AppCommand-update-8080.xml -------------------------------------------------------------------------------- /tests/xml/AVC-A10H-AppCommand-update-soundmode-8080.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVC-A10H-AppCommand-update-soundmode-8080.xml -------------------------------------------------------------------------------- /tests/xml/AVC-A10H-AppCommand-update-tonecontrol-8080.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVC-A10H-AppCommand-update-tonecontrol-8080.xml -------------------------------------------------------------------------------- /tests/xml/AVC-A10H-Deviceinfo-8080.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVC-A10H-Deviceinfo-8080.xml -------------------------------------------------------------------------------- /tests/xml/AVC-X3700H-AppCommand-setup-8080.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVC-X3700H-AppCommand-setup-8080.xml -------------------------------------------------------------------------------- /tests/xml/AVC-X3700H-AppCommand-update-8080.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVC-X3700H-AppCommand-update-8080.xml -------------------------------------------------------------------------------- /tests/xml/AVC-X3700H-AppCommand-update-soundmode-8080.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVC-X3700H-AppCommand-update-soundmode-8080.xml -------------------------------------------------------------------------------- /tests/xml/AVC-X3700H-AppCommand-update-tonecontrol-8080.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVC-X3700H-AppCommand-update-tonecontrol-8080.xml -------------------------------------------------------------------------------- /tests/xml/AVC-X3700H-Deviceinfo-8080.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVC-X3700H-Deviceinfo-8080.xml -------------------------------------------------------------------------------- /tests/xml/AVR-1713-AppCommand-setup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-1713-AppCommand-setup.xml -------------------------------------------------------------------------------- /tests/xml/AVR-1713-AppCommand-update-soundmode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-1713-AppCommand-update-soundmode.xml -------------------------------------------------------------------------------- /tests/xml/AVR-1713-AppCommand-update-tonecontrol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-1713-AppCommand-update-tonecontrol.xml -------------------------------------------------------------------------------- /tests/xml/AVR-1713-AppCommand-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-1713-AppCommand-update.xml -------------------------------------------------------------------------------- /tests/xml/AVR-1713-Deviceinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-1713-Deviceinfo.xml -------------------------------------------------------------------------------- /tests/xml/AVR-1713-formMainZone_MainZoneXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-1713-formMainZone_MainZoneXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-1713-formMainZone_MainZoneXmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-1713-formMainZone_MainZoneXmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/AVR-1713-formNetAudio_StatusXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-1713-formNetAudio_StatusXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-1713-formTuner_HdXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-1713-formTuner_HdXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-1713-formTuner_TunerXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-1713-formTuner_TunerXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-1713-formZone2_Zone2XmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-1713-formZone2_Zone2XmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/AVR-1713-formZone3_Zone3XmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-1713-formZone3_Zone3XmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/AVR-1912-AppCommand-setup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-1912-AppCommand-setup.xml -------------------------------------------------------------------------------- /tests/xml/AVR-1912-AppCommand-update-soundmode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-1912-AppCommand-update-soundmode.xml -------------------------------------------------------------------------------- /tests/xml/AVR-1912-AppCommand-update-tonecontrol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-1912-AppCommand-update-tonecontrol.xml -------------------------------------------------------------------------------- /tests/xml/AVR-1912-AppCommand-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-1912-AppCommand-update.xml -------------------------------------------------------------------------------- /tests/xml/AVR-1912-Deviceinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-1912-Deviceinfo.xml -------------------------------------------------------------------------------- /tests/xml/AVR-1912-formMainZone_MainZoneXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-1912-formMainZone_MainZoneXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-1912-formMainZone_MainZoneXmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-1912-formMainZone_MainZoneXmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/AVR-1912-formNetAudio_StatusXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-1912-formNetAudio_StatusXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-2312CI-AppCommand-setup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-2312CI-AppCommand-setup.xml -------------------------------------------------------------------------------- /tests/xml/AVR-2312CI-AppCommand-update-soundmode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-2312CI-AppCommand-update-soundmode.xml -------------------------------------------------------------------------------- /tests/xml/AVR-2312CI-AppCommand-update-tonecontrol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-2312CI-AppCommand-update-tonecontrol.xml -------------------------------------------------------------------------------- /tests/xml/AVR-2312CI-AppCommand-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-2312CI-AppCommand-update.xml -------------------------------------------------------------------------------- /tests/xml/AVR-2312CI-Deviceinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-2312CI-Deviceinfo.xml -------------------------------------------------------------------------------- /tests/xml/AVR-2312CI-formMainZone_MainZoneXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-2312CI-formMainZone_MainZoneXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-2312CI-formMainZone_MainZoneXmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-2312CI-formMainZone_MainZoneXmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/AVR-2312CI-formNetAudio_StatusXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-2312CI-formNetAudio_StatusXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-3311CI-AppCommand-setup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-3311CI-AppCommand-setup.xml -------------------------------------------------------------------------------- /tests/xml/AVR-3311CI-AppCommand-update-soundmode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-3311CI-AppCommand-update-soundmode.xml -------------------------------------------------------------------------------- /tests/xml/AVR-3311CI-AppCommand-update-tonecontrol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-3311CI-AppCommand-update-tonecontrol.xml -------------------------------------------------------------------------------- /tests/xml/AVR-3311CI-AppCommand-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-3311CI-AppCommand-update.xml -------------------------------------------------------------------------------- /tests/xml/AVR-3311CI-Deviceinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-3311CI-Deviceinfo.xml -------------------------------------------------------------------------------- /tests/xml/AVR-3311CI-formMainZone_MainZoneXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-3311CI-formMainZone_MainZoneXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-3311CI-formMainZone_MainZoneXmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-3311CI-formMainZone_MainZoneXmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/AVR-3311CI-formNetAudio_StatusXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-3311CI-formNetAudio_StatusXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-3312-AppCommand-setup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-3312-AppCommand-setup.xml -------------------------------------------------------------------------------- /tests/xml/AVR-3312-AppCommand-update-soundmode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-3312-AppCommand-update-soundmode.xml -------------------------------------------------------------------------------- /tests/xml/AVR-3312-AppCommand-update-tonecontrol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-3312-AppCommand-update-tonecontrol.xml -------------------------------------------------------------------------------- /tests/xml/AVR-3312-AppCommand-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-3312-AppCommand-update.xml -------------------------------------------------------------------------------- /tests/xml/AVR-3312-Deviceinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-3312-Deviceinfo.xml -------------------------------------------------------------------------------- /tests/xml/AVR-3312-formMainZone_MainZoneXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-3312-formMainZone_MainZoneXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-3312-formMainZone_MainZoneXmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-3312-formMainZone_MainZoneXmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/AVR-3312-formNetAudio_StatusXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-3312-formNetAudio_StatusXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-3312-formTuner_HdXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-3312-formTuner_HdXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-3312-formTuner_TunerXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-3312-formTuner_TunerXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-3312-formZone2_Zone2XmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-3312-formZone2_Zone2XmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/AVR-3312-formZone3_Zone3XmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-3312-formZone3_Zone3XmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/AVR-3313-AppCommand-setup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-3313-AppCommand-setup.xml -------------------------------------------------------------------------------- /tests/xml/AVR-3313-AppCommand-update-soundmode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-3313-AppCommand-update-soundmode.xml -------------------------------------------------------------------------------- /tests/xml/AVR-3313-AppCommand-update-tonecontrol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-3313-AppCommand-update-tonecontrol.xml -------------------------------------------------------------------------------- /tests/xml/AVR-3313-AppCommand-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-3313-AppCommand-update.xml -------------------------------------------------------------------------------- /tests/xml/AVR-3313-Deviceinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-3313-Deviceinfo.xml -------------------------------------------------------------------------------- /tests/xml/AVR-3313-formMainZone_MainZoneXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-3313-formMainZone_MainZoneXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-3313-formMainZone_MainZoneXmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-3313-formMainZone_MainZoneXmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/AVR-3313-formNetAudio_StatusXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-3313-formNetAudio_StatusXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-3313-formTuner_HdXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-3313-formTuner_HdXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-3313-formTuner_TunerXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-3313-formTuner_TunerXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-3313-formZone2_Zone2XmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-3313-formZone2_Zone2XmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/AVR-3313-formZone3_Zone3XmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-3313-formZone3_Zone3XmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/AVR-4810-AppCommand-setup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-4810-AppCommand-setup.xml -------------------------------------------------------------------------------- /tests/xml/AVR-4810-AppCommand-update-soundmode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-4810-AppCommand-update-soundmode.xml -------------------------------------------------------------------------------- /tests/xml/AVR-4810-AppCommand-update-tonecontrol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-4810-AppCommand-update-tonecontrol.xml -------------------------------------------------------------------------------- /tests/xml/AVR-4810-AppCommand-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-4810-AppCommand-update.xml -------------------------------------------------------------------------------- /tests/xml/AVR-4810-Deviceinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-4810-Deviceinfo.xml -------------------------------------------------------------------------------- /tests/xml/AVR-4810-formMainZone_MainZoneXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-4810-formMainZone_MainZoneXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-4810-formMainZone_MainZoneXmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-4810-formMainZone_MainZoneXmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/AVR-4810-formNetAudio_StatusXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-4810-formNetAudio_StatusXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-4810-formTuner_HdXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-4810-formTuner_HdXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-4810-formTuner_TunerXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-4810-formTuner_TunerXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-4810-formZone2_Zone2XmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-4810-formZone2_Zone2XmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/AVR-4810-formZone3_Zone3XmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-4810-formZone3_Zone3XmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X1100W-AppCommand-setup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X1100W-AppCommand-setup.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X1100W-AppCommand-update-soundmode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X1100W-AppCommand-update-soundmode.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X1100W-AppCommand-update-tonecontrol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X1100W-AppCommand-update-tonecontrol.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X1100W-AppCommand-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X1100W-AppCommand-update.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X1100W-Deviceinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X1100W-Deviceinfo.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X1100W-formMainZone_MainZoneXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X1100W-formMainZone_MainZoneXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X1100W-formMainZone_MainZoneXmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X1100W-formMainZone_MainZoneXmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X1100W-formNetAudio_StatusXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X1100W-formNetAudio_StatusXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X1100W-formTuner_HdXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X1100W-formTuner_HdXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X1100W-formTuner_TunerXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X1100W-formTuner_TunerXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X1100W-formZone2_Zone2XmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X1100W-formZone2_Zone2XmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X1100W-formZone3_Zone3XmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X1100W-formZone3_Zone3XmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X1600H_upnp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X1600H_upnp.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X2000-2-AppCommand-setup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X2000-2-AppCommand-setup.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X2000-2-AppCommand-update-soundmode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X2000-2-AppCommand-update-soundmode.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X2000-2-AppCommand-update-tonecontrol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X2000-2-AppCommand-update-tonecontrol.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X2000-2-AppCommand-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X2000-2-AppCommand-update.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X2000-2-Deviceinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X2000-2-Deviceinfo.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X2000-2-formMainZone_MainZoneXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X2000-2-formMainZone_MainZoneXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X2000-2-formMainZone_MainZoneXmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X2000-2-formMainZone_MainZoneXmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X2000-2-formNetAudio_StatusXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X2000-2-formNetAudio_StatusXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X2000-AppCommand-setup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X2000-AppCommand-setup.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X2000-AppCommand-update-soundmode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X2000-AppCommand-update-soundmode.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X2000-AppCommand-update-tonecontrol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X2000-AppCommand-update-tonecontrol.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X2000-AppCommand-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X2000-AppCommand-update.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X2000-Deviceinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X2000-Deviceinfo.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X2000-formMainZone_MainZoneXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X2000-formMainZone_MainZoneXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X2000-formMainZone_MainZoneXmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X2000-formMainZone_MainZoneXmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X2000-formNetAudio_StatusXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X2000-formNetAudio_StatusXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X2000-formTuner_HdXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X2000-formTuner_HdXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X2000-formTuner_TunerXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X2000-formTuner_TunerXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X2000-formZone2_Zone2XmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X2000-formZone2_Zone2XmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X2000-formZone3_Zone3XmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X2000-formZone3_Zone3XmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X2100W-2-AppCommand-setup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X2100W-2-AppCommand-setup.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X2100W-2-AppCommand-update-soundmode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X2100W-2-AppCommand-update-soundmode.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X2100W-2-AppCommand-update-tonecontrol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X2100W-2-AppCommand-update-tonecontrol.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X2100W-2-AppCommand-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X2100W-2-AppCommand-update.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X2100W-2-Deviceinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X2100W-2-Deviceinfo.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X2100W-2-formMainZone_MainZoneXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X2100W-2-formMainZone_MainZoneXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X2100W-2-formMainZone_MainZoneXmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X2100W-2-formMainZone_MainZoneXmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X2100W-2-formNetAudio_StatusXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X2100W-2-formNetAudio_StatusXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X2100W-AppCommand-setup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X2100W-AppCommand-setup.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X2100W-AppCommand-update-soundmode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X2100W-AppCommand-update-soundmode.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X2100W-AppCommand-update-tonecontrol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X2100W-AppCommand-update-tonecontrol.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X2100W-AppCommand-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X2100W-AppCommand-update.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X2100W-formMainZone_MainZoneXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X2100W-formMainZone_MainZoneXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X2100W-formMainZone_MainZoneXmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X2100W-formMainZone_MainZoneXmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X2100W-formNetAudio_StatusXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X2100W-formNetAudio_StatusXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X4000-AppCommand-setup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X4000-AppCommand-setup.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X4000-AppCommand-update-soundmode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X4000-AppCommand-update-soundmode.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X4000-AppCommand-update-tonecontrol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X4000-AppCommand-update-tonecontrol.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X4000-AppCommand-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X4000-AppCommand-update.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X4000-Deviceinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X4000-Deviceinfo.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X4000-formMainZone_MainZoneXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X4000-formMainZone_MainZoneXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X4000-formMainZone_MainZoneXmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X4000-formMainZone_MainZoneXmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X4000-formNetAudio_StatusXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X4000-formNetAudio_StatusXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X4000-formTuner_HdXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X4000-formTuner_HdXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X4000-formTuner_TunerXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X4000-formTuner_TunerXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X4000-formZone2_Zone2XmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X4000-formZone2_Zone2XmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X4000-formZone3_Zone3XmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X4000-formZone3_Zone3XmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X4100W-AppCommand-setup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X4100W-AppCommand-setup.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X4100W-AppCommand-update-soundmode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X4100W-AppCommand-update-soundmode.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X4100W-AppCommand-update-tonecontrol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X4100W-AppCommand-update-tonecontrol.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X4100W-AppCommand-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X4100W-AppCommand-update.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X4100W-Deviceinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X4100W-Deviceinfo.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X4100W-formMainZone_MainZoneXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X4100W-formMainZone_MainZoneXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X4100W-formMainZone_MainZoneXmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X4100W-formMainZone_MainZoneXmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X4100W-formNetAudio_StatusXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X4100W-formNetAudio_StatusXml.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X4300H-AppCommand-setup-8080.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X4300H-AppCommand-setup-8080.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X4300H-AppCommand-update-8080.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X4300H-AppCommand-update-8080.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X4300H-AppCommand-update-soundmode-8080.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X4300H-AppCommand-update-soundmode-8080.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X4300H-AppCommand-update-tonecontrol-8080.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X4300H-AppCommand-update-tonecontrol-8080.xml -------------------------------------------------------------------------------- /tests/xml/AVR-X4300H-Deviceinfo-8080.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/AVR-X4300H-Deviceinfo-8080.xml -------------------------------------------------------------------------------- /tests/xml/M-CR510-2-AppCommand-setup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-CR510-2-AppCommand-setup.xml -------------------------------------------------------------------------------- /tests/xml/M-CR510-2-AppCommand-update-soundmode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-CR510-2-AppCommand-update-soundmode.xml -------------------------------------------------------------------------------- /tests/xml/M-CR510-2-AppCommand-update-tonecontrol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-CR510-2-AppCommand-update-tonecontrol.xml -------------------------------------------------------------------------------- /tests/xml/M-CR510-2-AppCommand-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-CR510-2-AppCommand-update.xml -------------------------------------------------------------------------------- /tests/xml/M-CR510-2-Deviceinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-CR510-2-Deviceinfo.xml -------------------------------------------------------------------------------- /tests/xml/M-CR510-2-formMainZone_MainZoneXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-CR510-2-formMainZone_MainZoneXml.xml -------------------------------------------------------------------------------- /tests/xml/M-CR510-2-formMainZone_MainZoneXmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-CR510-2-formMainZone_MainZoneXmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/M-CR510-2-formNetAudio_StatusXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-CR510-2-formNetAudio_StatusXml.xml -------------------------------------------------------------------------------- /tests/xml/M-CR510-2-formTuner_HdXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-CR510-2-formTuner_HdXml.xml -------------------------------------------------------------------------------- /tests/xml/M-CR510-2-formTuner_TunerXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-CR510-2-formTuner_TunerXml.xml -------------------------------------------------------------------------------- /tests/xml/M-CR510-AppCommand-setup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-CR510-AppCommand-setup.xml -------------------------------------------------------------------------------- /tests/xml/M-CR510-AppCommand-update-soundmode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-CR510-AppCommand-update-soundmode.xml -------------------------------------------------------------------------------- /tests/xml/M-CR510-AppCommand-update-tonecontrol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-CR510-AppCommand-update-tonecontrol.xml -------------------------------------------------------------------------------- /tests/xml/M-CR510-AppCommand-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-CR510-AppCommand-update.xml -------------------------------------------------------------------------------- /tests/xml/M-CR510-Deviceinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-CR510-Deviceinfo.xml -------------------------------------------------------------------------------- /tests/xml/M-CR510-formMainZone_MainZoneXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-CR510-formMainZone_MainZoneXml.xml -------------------------------------------------------------------------------- /tests/xml/M-CR510-formMainZone_MainZoneXmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-CR510-formMainZone_MainZoneXmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/M-CR510-formNetAudio_StatusXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-CR510-formNetAudio_StatusXml.xml -------------------------------------------------------------------------------- /tests/xml/M-CR510-formTuner_HdXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-CR510-formTuner_HdXml.xml -------------------------------------------------------------------------------- /tests/xml/M-CR510-formTuner_TunerXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-CR510-formTuner_TunerXml.xml -------------------------------------------------------------------------------- /tests/xml/M-CR603-AppCommand-setup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-CR603-AppCommand-setup.xml -------------------------------------------------------------------------------- /tests/xml/M-CR603-AppCommand-update-soundmode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-CR603-AppCommand-update-soundmode.xml -------------------------------------------------------------------------------- /tests/xml/M-CR603-AppCommand-update-tonecontrol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-CR603-AppCommand-update-tonecontrol.xml -------------------------------------------------------------------------------- /tests/xml/M-CR603-AppCommand-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-CR603-AppCommand-update.xml -------------------------------------------------------------------------------- /tests/xml/M-CR603-Deviceinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-CR603-Deviceinfo.xml -------------------------------------------------------------------------------- /tests/xml/M-CR603-formMainZone_MainZoneXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-CR603-formMainZone_MainZoneXml.xml -------------------------------------------------------------------------------- /tests/xml/M-CR603-formMainZone_MainZoneXmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-CR603-formMainZone_MainZoneXmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/M-CR603-formNetAudio_StatusXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-CR603-formNetAudio_StatusXml.xml -------------------------------------------------------------------------------- /tests/xml/M-CR603-formTuner_HdXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-CR603-formTuner_HdXml.xml -------------------------------------------------------------------------------- /tests/xml/M-CR603-formTuner_TunerXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-CR603-formTuner_TunerXml.xml -------------------------------------------------------------------------------- /tests/xml/M-CR603-formZone2_Zone2XmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-CR603-formZone2_Zone2XmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/M-CR603-formZone3_Zone3XmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-CR603-formZone3_Zone3XmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/M-RC610-AppCommand-setup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-RC610-AppCommand-setup.xml -------------------------------------------------------------------------------- /tests/xml/M-RC610-AppCommand-update-soundmode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-RC610-AppCommand-update-soundmode.xml -------------------------------------------------------------------------------- /tests/xml/M-RC610-AppCommand-update-tonecontrol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-RC610-AppCommand-update-tonecontrol.xml -------------------------------------------------------------------------------- /tests/xml/M-RC610-AppCommand-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-RC610-AppCommand-update.xml -------------------------------------------------------------------------------- /tests/xml/M-RC610-Deviceinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-RC610-Deviceinfo.xml -------------------------------------------------------------------------------- /tests/xml/M-RC610-formMainZone_MainZoneXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-RC610-formMainZone_MainZoneXml.xml -------------------------------------------------------------------------------- /tests/xml/M-RC610-formMainZone_MainZoneXmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-RC610-formMainZone_MainZoneXmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/M-RC610-formNetAudio_StatusXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-RC610-formNetAudio_StatusXml.xml -------------------------------------------------------------------------------- /tests/xml/M-RC610-formTuner_TunerXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/M-RC610-formTuner_TunerXml.xml -------------------------------------------------------------------------------- /tests/xml/NR1604-AppCommand-setup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/NR1604-AppCommand-setup.xml -------------------------------------------------------------------------------- /tests/xml/NR1604-AppCommand-update-soundmode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/NR1604-AppCommand-update-soundmode.xml -------------------------------------------------------------------------------- /tests/xml/NR1604-AppCommand-update-tonecontrol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/NR1604-AppCommand-update-tonecontrol.xml -------------------------------------------------------------------------------- /tests/xml/NR1604-AppCommand-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/NR1604-AppCommand-update.xml -------------------------------------------------------------------------------- /tests/xml/NR1604-Deviceinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/NR1604-Deviceinfo.xml -------------------------------------------------------------------------------- /tests/xml/NR1604-formMainZone_MainZoneXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/NR1604-formMainZone_MainZoneXml.xml -------------------------------------------------------------------------------- /tests/xml/NR1604-formMainZone_MainZoneXmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/NR1604-formMainZone_MainZoneXmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/NR1604-formNetAudio_StatusXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/NR1604-formNetAudio_StatusXml.xml -------------------------------------------------------------------------------- /tests/xml/NR1604-formTuner_HdXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/NR1604-formTuner_HdXml.xml -------------------------------------------------------------------------------- /tests/xml/NR1604-formTuner_TunerXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/NR1604-formTuner_TunerXml.xml -------------------------------------------------------------------------------- /tests/xml/NR1604-formZone2_Zone2XmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/NR1604-formZone2_Zone2XmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/NR1604-formZone3_Zone3XmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/NR1604-formZone3_Zone3XmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/NR1609-AppCommand-setup-8080.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/NR1609-AppCommand-setup-8080.xml -------------------------------------------------------------------------------- /tests/xml/NR1609-AppCommand-update-8080.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/NR1609-AppCommand-update-8080.xml -------------------------------------------------------------------------------- /tests/xml/NR1609-AppCommand-update-soundmode-8080.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/NR1609-AppCommand-update-soundmode-8080.xml -------------------------------------------------------------------------------- /tests/xml/NR1609-AppCommand-update-tonecontrol-8080.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/NR1609-AppCommand-update-tonecontrol-8080.xml -------------------------------------------------------------------------------- /tests/xml/NR1609-Deviceinfo-8080.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/NR1609-Deviceinfo-8080.xml -------------------------------------------------------------------------------- /tests/xml/SR5008-AppCommand-setup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/SR5008-AppCommand-setup.xml -------------------------------------------------------------------------------- /tests/xml/SR5008-AppCommand-update-soundmode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/SR5008-AppCommand-update-soundmode.xml -------------------------------------------------------------------------------- /tests/xml/SR5008-AppCommand-update-tonecontrol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/SR5008-AppCommand-update-tonecontrol.xml -------------------------------------------------------------------------------- /tests/xml/SR5008-AppCommand-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/SR5008-AppCommand-update.xml -------------------------------------------------------------------------------- /tests/xml/SR5008-Deviceinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/SR5008-Deviceinfo.xml -------------------------------------------------------------------------------- /tests/xml/SR5008-formMainZone_MainZoneXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/SR5008-formMainZone_MainZoneXml.xml -------------------------------------------------------------------------------- /tests/xml/SR5008-formMainZone_MainZoneXmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/SR5008-formMainZone_MainZoneXmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/SR5008-formNetAudio_StatusXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/SR5008-formNetAudio_StatusXml.xml -------------------------------------------------------------------------------- /tests/xml/SR5008-formTuner_HdXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/SR5008-formTuner_HdXml.xml -------------------------------------------------------------------------------- /tests/xml/SR5008-formTuner_TunerXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/SR5008-formTuner_TunerXml.xml -------------------------------------------------------------------------------- /tests/xml/SR6011-AppCommand-setup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/SR6011-AppCommand-setup.xml -------------------------------------------------------------------------------- /tests/xml/SR6011-AppCommand-update-soundmode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/SR6011-AppCommand-update-soundmode.xml -------------------------------------------------------------------------------- /tests/xml/SR6011-AppCommand-update-tonecontrol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/SR6011-AppCommand-update-tonecontrol.xml -------------------------------------------------------------------------------- /tests/xml/SR6011-AppCommand-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/SR6011-AppCommand-update.xml -------------------------------------------------------------------------------- /tests/xml/SR6011-Deviceinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/SR6011-Deviceinfo.xml -------------------------------------------------------------------------------- /tests/xml/SR6011-formMainZone_MainZoneXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/SR6011-formMainZone_MainZoneXml.xml -------------------------------------------------------------------------------- /tests/xml/SR6011-formMainZone_MainZoneXmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/SR6011-formMainZone_MainZoneXmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/SR6011-formNetAudio_StatusXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/SR6011-formNetAudio_StatusXml.xml -------------------------------------------------------------------------------- /tests/xml/SR6011-formTuner_HdXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/SR6011-formTuner_HdXml.xml -------------------------------------------------------------------------------- /tests/xml/SR6011-formTuner_TunerXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/SR6011-formTuner_TunerXml.xml -------------------------------------------------------------------------------- /tests/xml/SR6011-formZone2_Zone2XmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/SR6011-formZone2_Zone2XmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/SR6011-formZone3_Zone3XmlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/SR6011-formZone3_Zone3XmlStatus.xml -------------------------------------------------------------------------------- /tests/xml/SR6012-AppCommand-setup-8080.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/SR6012-AppCommand-setup-8080.xml -------------------------------------------------------------------------------- /tests/xml/SR6012-AppCommand-update-8080.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/SR6012-AppCommand-update-8080.xml -------------------------------------------------------------------------------- /tests/xml/SR6012-AppCommand-update-soundmode-8080.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/SR6012-AppCommand-update-soundmode-8080.xml -------------------------------------------------------------------------------- /tests/xml/SR6012-AppCommand-update-tonecontrol-8080.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/SR6012-AppCommand-update-tonecontrol-8080.xml -------------------------------------------------------------------------------- /tests/xml/SR6012-Deviceinfo-8080.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tests/xml/SR6012-Deviceinfo-8080.xml -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ol-iver/denonavr/HEAD/tox.ini --------------------------------------------------------------------------------