From a58e317c44779b0eea1526fc0adb2f92981d47cf Mon Sep 17 00:00:00 2001 From: Dominick Meglio Date: Mon, 16 Jan 2023 09:51:36 -0500 Subject: [PATCH 1/3] Add documentation for telnet feature. --- source/_integrations/denonavr.markdown | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/source/_integrations/denonavr.markdown b/source/_integrations/denonavr.markdown index 8f794e6e4e15..f714a3731a93 100644 --- a/source/_integrations/denonavr.markdown +++ b/source/_integrations/denonavr.markdown @@ -50,6 +50,8 @@ Known supported devices: - Denon AVR-X4700H - Denon AVR-X6500H - Denon AVR-X6700H +- Denon AVR-X7200W +- Denon AVR-X8500H - Denon AVR-1912 - Denon AVR-2112CI - Denon AVR-2312CI @@ -106,15 +108,20 @@ host: description: IP address of the device, e.g., 192.168.1.32. If not set, auto-discovery is used. show_all_sources: description: If True all sources are displayed in sources list even if they are marked as deleted in the receiver. If False deleted sources are not displayed. Some receivers have a bug that marks all sources as deleted in the interface. In this case, this option could help. -zone1: - description: Specifies if zone 1 should be activated. Zones are displayed as additional media players with the same functionality as the Main Zone of the device supports. zone2: - description: Specifies if zone 2 should be activated. Zones are displayed as additional media players with the same functionality as the Main Zone of the device supports. Some receivers do not support a second zone. + description: Specifies if zone 2 should be activated. Zones are displayed as additional media players with the same functionality as the Main Zone of the device supports. +zone3: + description: Specifies if zone 3 should be activated. Zones are displayed as additional media players with the same functionality as the Main Zone of the device supports. Some receivers do not support a second zone. update_audyssey: description: Specifies if Audyssey settings should be updated. This can take up to 10 seconds for some receivers. required: false default: false type: boolean +use_telnet: + description: Specifies if a telnet connection should be used to receive device status updates. Using telnet provides realtime updates (local push) for many values but each receiver is limited to a single connection. If you enable this setting, no other connection to your device can be made via telnet. This means, for example, the Denon AVR Remote app will not work if this option is enabled. + required: false + default: false + type: boolean {% endconfiguration_basic %} A few notes: From a3f3564b4c9d178704a1015429377071f17101ad Mon Sep 17 00:00:00 2001 From: Dominick Meglio Date: Mon, 16 Jan 2023 18:55:14 -0500 Subject: [PATCH 2/3] Change default for use_telnet to True and add note thatit only applies to new installs --- source/_integrations/denonavr.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_integrations/denonavr.markdown b/source/_integrations/denonavr.markdown index f714a3731a93..859b88bb7527 100644 --- a/source/_integrations/denonavr.markdown +++ b/source/_integrations/denonavr.markdown @@ -118,9 +118,9 @@ update_audyssey: default: false type: boolean use_telnet: - description: Specifies if a telnet connection should be used to receive device status updates. Using telnet provides realtime updates (local push) for many values but each receiver is limited to a single connection. If you enable this setting, no other connection to your device can be made via telnet. This means, for example, the Denon AVR Remote app will not work if this option is enabled. + description: Specifies if a telnet connection should be used to receive device status updates. Using telnet provides realtime updates (local push) for many values but each receiver is limited to a single connection. If you enable this setting, no other connection to your device can be made via telnet. This means, for example, the Denon AVR Remote app will not work if this option is enabled. This will be set to true for new installations of the integration but false for existing installs to prevent compatibility issues with the Denon AVR Remote app. required: false - default: false + default: true type: boolean {% endconfiguration_basic %} From 53084a68017902d3c3d527bb0fdc0a66604f5b88 Mon Sep 17 00:00:00 2001 From: Dominick Meglio Date: Sun, 22 Jan 2023 20:36:19 -0500 Subject: [PATCH 3/3] Update denonavr documentation based on core PR feedback changes. --- source/_integrations/denonavr.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_integrations/denonavr.markdown b/source/_integrations/denonavr.markdown index 859b88bb7527..ef48dfd01217 100644 --- a/source/_integrations/denonavr.markdown +++ b/source/_integrations/denonavr.markdown @@ -118,7 +118,7 @@ update_audyssey: default: false type: boolean use_telnet: - description: Specifies if a telnet connection should be used to receive device status updates. Using telnet provides realtime updates (local push) for many values but each receiver is limited to a single connection. If you enable this setting, no other connection to your device can be made via telnet. This means, for example, the Denon AVR Remote app will not work if this option is enabled. This will be set to true for new installations of the integration but false for existing installs to prevent compatibility issues with the Denon AVR Remote app. + description: Specifies if a telnet connection should be used to receive device status updates. Using telnet provides realtime updates (local push) for many values but each receiver is limited to a single connection. If you enable this setting, no other connection to your device can be made via telnet. This will be set to true for new installations of the integration but false for existing installs to prevent compatibility issues. required: false default: true type: boolean