mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-17 06:16:50 +00:00
Update Nadtcp media_player component configuration (#7241)
* Update Nadtcp media_player component configuration * Minor change
This commit is contained in:
parent
805971b13f
commit
50145b762c
@ -13,7 +13,6 @@ ha_release: 0.47
|
|||||||
ha_iot_class: "Local Polling"
|
ha_iot_class: "Local Polling"
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
The `nadtcp` platform allows you to control the D7050 and C338 from Home Assistant via WiFi. Note that it has only been tested with the D 7050.
|
The `nadtcp` platform allows you to control the D7050 and C338 from Home Assistant via WiFi. Note that it has only been tested with the D 7050.
|
||||||
|
|
||||||
To add a NAD amplifier to your installation, add the following to your `configuration.yaml` file:
|
To add a NAD amplifier to your installation, add the following to your `configuration.yaml` file:
|
||||||
@ -21,18 +20,35 @@ To add a NAD amplifier to your installation, add the following to your `configur
|
|||||||
```yaml
|
```yaml
|
||||||
# Example configuration.yaml entry
|
# Example configuration.yaml entry
|
||||||
media_player:
|
media_player:
|
||||||
platform: nadtcp
|
- platform: nadtcp
|
||||||
host: 192.168.0.112
|
host: 192.168.0.112
|
||||||
```
|
```
|
||||||
|
|
||||||
Configuration variables:
|
{% configuration %}
|
||||||
|
host:
|
||||||
- **host** (*Required*): The IP address of your amplifier.
|
description: The IP address of your amplifier.
|
||||||
- **name** (*Optional*): Name of the device. Default is NAD amplifier.
|
required: true
|
||||||
- **min_volume** (*optional*): Minimum volume in dB to use with the slider. Default is `-60`
|
type: string
|
||||||
- **max_volume** (*optional*): Maximum volume in dB to use with the slider. Default is `-10`
|
name:
|
||||||
- **volume_step** (*Optional*): The amount in dB you want to increase the volume with when pressing volume up/down. Default is 4 dB.
|
description: Name of the device.
|
||||||
|
required: false
|
||||||
|
default: NAD amplifier
|
||||||
|
type: string
|
||||||
|
min_volume:
|
||||||
|
description: Minimum volume in dB to use with the slider.
|
||||||
|
required: false
|
||||||
|
default: -60
|
||||||
|
type: integer
|
||||||
|
max_volume:
|
||||||
|
description: Maximum volume in dB to use with the slider.
|
||||||
|
required: false
|
||||||
|
default: -10
|
||||||
|
type: integer
|
||||||
|
volume_step:
|
||||||
|
description: The amount in dB you want to increase the volume with when pressing volume up/down.
|
||||||
|
required: false
|
||||||
|
default: 4
|
||||||
|
type: integer
|
||||||
|
{% endconfiguration %}
|
||||||
|
|
||||||
The maximum volume level of the D 7050 amplifier is +10 db, minimum is -90.
|
The maximum volume level of the D 7050 amplifier is +10 db, minimum is -90.
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user