Update denonavr media_player component configuration (#7441)

This commit is contained in:
Klaas Schoute 2018-11-09 09:40:30 +01:00 committed by Fabian Affolter
parent 6328288cf8
commit 39a91e1cb0

View File

@ -28,7 +28,7 @@ Supported devices:
- Marantz M-CR603 - Marantz M-CR603
- Marantz M-RC610 - Marantz M-RC610
- Marantz SR5008 - Marantz SR5008
- Marantz SR6007 - SR6010 - Marantz SR6007 - SR6010
- Marantz NR1506 - Marantz NR1506
- Marantz NR1604 - Marantz NR1604
- Other Denon AVR receivers (untested) - Other Denon AVR receivers (untested)
@ -53,15 +53,39 @@ media_player:
name: NAME name: NAME
``` ```
Configuration variables: {% configuration %}
host:
- **host** (*Optional*): IP address of the device. Example: 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.
- **name** (*Optional*): Name of the device. If not set, friendlyName of the receiver is used. required: false
- **show_all_sources** (*Optional*): 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 (default). Some receivers have a bug that marks all sources as deleted in the interface. In this case, this option could help. type: string
- **timeout** (*Optional*): Timeout for HTTP requests to the receiver. Defaults to 2 seconds if not provided. name:
- **zones** (*Optional*): 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: Name of the device. If not set, friendlyName of the receiver is used.
- **zone**: Zone which should be activated. Valid options are Zone2 and Zone3 required: false
- **name** (*Optional*): Name of the zone. If not set the name of the main device + zone as a suffix is taken. type: string
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.
required: false
default: false
type: boolean
timeout:
description: Timeout in seconds for HTTP requests to the receiver.
required: false
default: 2
type: integer
zones:
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.
required: false
type: list
keys:
zone:
description: Zone which should be activated. Valid options are `Zone2` and `Zone3`.
required: true
type: string
name:
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 %}
A few notes: A few notes: