Split description of both platforms / added auto discovery feature for denonavr (#1582)

This commit is contained in:
Oliver 2016-12-18 09:58:49 +01:00 committed by Fabian Affolter
parent afdaee8f57
commit f98cc07cd4
No known key found for this signature in database
GPG Key ID: E23CD2DD36A4397F

View File

@ -28,7 +28,7 @@ Supported devices:
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, add the following to your `configuration.yaml` file:
Telnet interface **Telnet interface**
```yaml ```yaml
# Example configuration.yaml entry # Example configuration.yaml entry
media_player: media_player:
@ -36,7 +36,20 @@ media_player:
host: IP_ADDRESS host: IP_ADDRESS
``` ```
denonavr interface Configuration variables:
- **host** (*Required*): IP address of the device. Example: 192.168.1.32
- **name** (*Optional*): Name of the device.
A few notes for platform: denon
- The receiver handles only one telnet connection and refuses others.
- Be careful with the volume. 100% or even 50% is very loud.
- To be able to wake up the receiver, activate the "remote" setting in the receiver's settings.
- Play and pause are supported, toggling is not possible.
- Seeking cannot be implemented as the UI sends absolute positions. Only seeking via simulated button presses is possible.
**denonavr interface**
```yaml ```yaml
# Example configuration.yaml entry # Example configuration.yaml entry
media_player: media_player:
@ -46,15 +59,10 @@ media_player:
Configuration variables: Configuration variables:
- **host** (*Required*): IP address of the device. Example: 192.168.1.32 - **host** (*Optional*): IP address of the device. Example: 192.168.1.32. If not set, auto discovery is used.
- **name** (*Optional*): Name of the device - **name** (*Optional*): Name of the device. If not set, friendlyName of receiver is used.
A few notes: A few notes for platform: denonavr
- The receiver handles only one telnet connection and refuses others.
- Be careful with the volume. 100% or even 50% is very loud.
- To be able to wake up the receiver, activate the "remote" setting in the receiver's settings.
- Play and pause are supported, toggling is not possible.
- Seeking cannot be implemented as the UI sends absolute positions. Only seeking via simulated button presses is possible.
- Additional option the control Denon AVR receivers with a builtin web server is using the HTTP interface with denonavr platform - Additional option the control Denon AVR receivers with a builtin web server is using the HTTP interface with denonavr platform
- denonavr platform supports some additional functionalities like album covers and is supporting more than simultaneous one connection - denonavr platform supports some additional functionalities like album covers, custom input source names and auto discovery
- Still be careful with the volume. 100% in an action movie will tear down your walls.