Docs DenonAVR Config Flow (#13319)

This commit is contained in:
starkillerOG 2020-06-19 20:36:01 +02:00 committed by GitHub
parent 8ce8476eec
commit aec676013c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -53,30 +53,13 @@ If your model is not on the list then give it a test, if everything works correc
If you have something else using the IP controller for your Denon AVR 3808CI, such as your URC controller, it will not work! There is either a bug or security issue with some models where only one device could be controlling the IP functionality. If you have something else using the IP controller for your Denon AVR 3808CI, such as your URC controller, it will not work! There is either a bug or security issue with some models where only one device could be controlling the IP functionality.
</div> </div>
To add a Denon Network Receiver to your installation, add the following to your `configuration.yaml` file: To add a Denon Network Receiver to your installation, click Configuration in the sidebar, then click Integrations. Denon and Marantz receivers should be discovered automatically and should show up in the overview. Hit configure and go through the steps to specify the optional settings. If your receiver does not show up automatically, click the + icon in the lower right. Then search for "denonavr" and enter the setup.
```yaml
# Example configuration.yaml entry
media_player:
- platform: denonavr
host: IP_ADDRESS
name: NAME
show_all_sources: true
timeout: POSITIVE INTEGER
zones:
- zone: Zone2 / Zone3
name: NAME
```
{% configuration %} {% configuration %}
host: host:
description: IP address of the device, e.g., 192.168.1.32. If not set, auto-discovery is used. description: IP address of the device, e.g., 192.168.1.32. If not set, auto-discovery is used.
required: false required: false
type: string type: string
name:
description: Name of the device. If not set, friendlyName of the receiver is used.
required: false
type: string
show_all_sources: 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. 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.
required: false required: false
@ -87,19 +70,16 @@ timeout:
required: false required: false
default: 2 default: 2
type: integer type: integer
zones: zone1:
description: List of additional zones to be activated. They are displayed as additional media players with the same functionality Main Zone of the device supports. 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.
required: false required: false
type: list default: false
keys: type: boolean
zone: zone2:
description: Zone which should be activated. Valid options are `Zone2` and `Zone3`. 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.
required: true required: false
type: string default: false
name: type: boolean
description: Name of the zone. If not set the name of the main device + zone as a suffix is taken.
required: false
type: string
{% endconfiguration %} {% endconfiguration %}
A few notes: A few notes: