From 95ae3b96189018ede30fa505157e17319e1f4df8 Mon Sep 17 00:00:00 2001 From: mwsluis Date: Sun, 2 Apr 2017 00:14:35 +0200 Subject: [PATCH 1/9] Doc for nad7050 component Initial commit. --- .../_components/media_player.nad7050.markdown | 42 +++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 source/_components/media_player.nad7050.markdown diff --git a/source/_components/media_player.nad7050.markdown b/source/_components/media_player.nad7050.markdown new file mode 100644 index 000000000000..d88aab72cb55 --- /dev/null +++ b/source/_components/media_player.nad7050.markdown @@ -0,0 +1,42 @@ +--- +layout: page +title: "NAD D 7050" +description: "Instructions how to integrate the NAD D 7050 digital amplifier into Home Assistant." +date: 2017-04-01 20:00 +sidebar: true +comments: false +sharing: true +footer: true +logo: nad.png +ha_category: Media Player +ha_release: 0.4x +ha_iot_class: "Local Polling" +--- + + +The `nad7050` platform allows you to control a [NAD D 7050](https://nadelectronics.com/product/d-7050-direct-digital-network-amplifier/) digital amplifier from Home Assistant. + +To add a NAD receiver to your installation, add the following to your `configuration.yaml` file: + +```yaml +# Example configuration.yaml entry +media_player: + - platform: nad7050 + name: NAD D 7050 + host: 192.168.0.112 + min_volume: -60 + max_volume: -20 + volume_step: 5 +``` + +Configuration variables: + +- **host** (*Required*): The IP address of your amplifier. +- **name** (*Optional*): Name of the device. Default is NAD D 7050. +- **min_volume** (*optional*): Minimum volume in dB to use with the slider. Default is `-60` +- **max_volume** (*optional*): Maximum volume in dB to use with the slider. Default is `-10` +- **volume_step** (*Optional*): The amount in dB you want to increase the volume with when pressing volume up/down. + +The min_volume and max_volume protect you against misclicks on the slider. The maximum volume level of the D 7050 amplifier is +10 db, minimum is -90. + + From 3594e7b94a7da2c3d16060f3d831cd79bd45abc4 Mon Sep 17 00:00:00 2001 From: mwsluis Date: Sun, 9 Apr 2017 00:54:28 +0200 Subject: [PATCH 2/9] removed volume_step --- source/_components/media_player.nad7050.markdown | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/source/_components/media_player.nad7050.markdown b/source/_components/media_player.nad7050.markdown index d88aab72cb55..46f8db36ce26 100644 --- a/source/_components/media_player.nad7050.markdown +++ b/source/_components/media_player.nad7050.markdown @@ -16,27 +16,22 @@ ha_iot_class: "Local Polling" The `nad7050` platform allows you to control a [NAD D 7050](https://nadelectronics.com/product/d-7050-direct-digital-network-amplifier/) digital amplifier from Home Assistant. -To add a NAD receiver to your installation, add the following to your `configuration.yaml` file: +To add a D 7050 amplifier to your installation, add the following to your `configuration.yaml` file: ```yaml # Example configuration.yaml entry media_player: - platform: nad7050 - name: NAD D 7050 host: 192.168.0.112 - min_volume: -60 - max_volume: -20 - volume_step: 5 ``` Configuration variables: - **host** (*Required*): The IP address of your amplifier. - **name** (*Optional*): Name of the device. Default is NAD D 7050. -- **min_volume** (*optional*): Minimum volume in dB to use with the slider. Default is `-60` -- **max_volume** (*optional*): Maximum volume in dB to use with the slider. Default is `-10` -- **volume_step** (*Optional*): The amount in dB you want to increase the volume with when pressing volume up/down. +- **min_volume** (*optional*): Minimum volume in dB to use with the slider. Default is `-60`. +- **max_volume** (*optional*): Maximum volume in dB to use with the slider. Default is `-10`. -The min_volume and max_volume protect you against misclicks on the slider. 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. From f997f852b852a55ca950d6c0991dcbdddd2a72d6 Mon Sep 17 00:00:00 2001 From: mwsluis Date: Sun, 9 Apr 2017 21:28:04 +0200 Subject: [PATCH 3/9] Revert "removed volume_step" This reverts commit 3594e7b94a7da2c3d16060f3d831cd79bd45abc4. --- source/_components/media_player.nad7050.markdown | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/source/_components/media_player.nad7050.markdown b/source/_components/media_player.nad7050.markdown index 46f8db36ce26..d88aab72cb55 100644 --- a/source/_components/media_player.nad7050.markdown +++ b/source/_components/media_player.nad7050.markdown @@ -16,22 +16,27 @@ ha_iot_class: "Local Polling" The `nad7050` platform allows you to control a [NAD D 7050](https://nadelectronics.com/product/d-7050-direct-digital-network-amplifier/) digital amplifier from Home Assistant. -To add a D 7050 amplifier to your installation, add the following to your `configuration.yaml` file: +To add a NAD receiver to your installation, add the following to your `configuration.yaml` file: ```yaml # Example configuration.yaml entry media_player: - platform: nad7050 + name: NAD D 7050 host: 192.168.0.112 + min_volume: -60 + max_volume: -20 + volume_step: 5 ``` Configuration variables: - **host** (*Required*): The IP address of your amplifier. - **name** (*Optional*): Name of the device. Default is NAD D 7050. -- **min_volume** (*optional*): Minimum volume in dB to use with the slider. Default is `-60`. -- **max_volume** (*optional*): Maximum volume in dB to use with the slider. Default is `-10`. +- **min_volume** (*optional*): Minimum volume in dB to use with the slider. Default is `-60` +- **max_volume** (*optional*): Maximum volume in dB to use with the slider. Default is `-10` +- **volume_step** (*Optional*): The amount in dB you want to increase the volume with when pressing volume up/down. -The maximum volume level of the D 7050 amplifier is +10 db, minimum is -90. +The min_volume and max_volume protect you against misclicks on the slider. The maximum volume level of the D 7050 amplifier is +10 db, minimum is -90. From a4e02ff735f79201c838ead0ef38cba8f88a703f Mon Sep 17 00:00:00 2001 From: mwsluis Date: Sun, 9 Apr 2017 21:31:30 +0200 Subject: [PATCH 4/9] reader volume_step --- source/_components/media_player.nad7050.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_components/media_player.nad7050.markdown b/source/_components/media_player.nad7050.markdown index d88aab72cb55..46bccd03010e 100644 --- a/source/_components/media_player.nad7050.markdown +++ b/source/_components/media_player.nad7050.markdown @@ -37,6 +37,6 @@ Configuration variables: - **max_volume** (*optional*): Maximum volume in dB to use with the slider. Default is `-10` - **volume_step** (*Optional*): The amount in dB you want to increase the volume with when pressing volume up/down. -The min_volume and max_volume protect you against misclicks on the slider. 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. From 9b8a16b8ad578a4126a8451039976c8ed12e51d6 Mon Sep 17 00:00:00 2001 From: mwsluis Date: Tue, 25 Apr 2017 22:28:51 +0200 Subject: [PATCH 5/9] simplified example --- source/_components/media_player.nad7050.markdown | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/source/_components/media_player.nad7050.markdown b/source/_components/media_player.nad7050.markdown index 46bccd03010e..69a8490c233a 100644 --- a/source/_components/media_player.nad7050.markdown +++ b/source/_components/media_player.nad7050.markdown @@ -21,12 +21,8 @@ To add a NAD receiver to your installation, add the following to your `configura ```yaml # Example configuration.yaml entry media_player: - - platform: nad7050 - name: NAD D 7050 + platform: nad7050 host: 192.168.0.112 - min_volume: -60 - max_volume: -20 - volume_step: 5 ``` Configuration variables: @@ -35,7 +31,7 @@ Configuration variables: - **name** (*Optional*): Name of the device. Default is NAD D 7050. - **min_volume** (*optional*): Minimum volume in dB to use with the slider. Default is `-60` - **max_volume** (*optional*): Maximum volume in dB to use with the slider. Default is `-10` -- **volume_step** (*Optional*): The amount in dB you want to increase the volume with when pressing volume up/down. +- **volume_step** (*Optional*): The amount in dB you want to increase the volume with when pressing volume up/down. Default is 4 dB. The maximum volume level of the D 7050 amplifier is +10 db, minimum is -90. From 1f9787e934efbeef2cbfdcb0b971b17b412c7015 Mon Sep 17 00:00:00 2001 From: mwsluis Date: Wed, 7 Jun 2017 22:43:53 +0200 Subject: [PATCH 6/9] renamed component --- ...a_player.nad7050.markdown => media_player.nadtcp.markdown} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename source/_components/{media_player.nad7050.markdown => media_player.nadtcp.markdown} (84%) diff --git a/source/_components/media_player.nad7050.markdown b/source/_components/media_player.nadtcp.markdown similarity index 84% rename from source/_components/media_player.nad7050.markdown rename to source/_components/media_player.nadtcp.markdown index 69a8490c233a..bb29cf76af12 100644 --- a/source/_components/media_player.nad7050.markdown +++ b/source/_components/media_player.nadtcp.markdown @@ -14,14 +14,14 @@ ha_iot_class: "Local Polling" --- -The `nad7050` platform allows you to control a [NAD D 7050](https://nadelectronics.com/product/d-7050-direct-digital-network-amplifier/) digital amplifier from Home Assistant. +The `nadtcp` platform allows you to control a [NAD D 7050](https://nadelectronics.com/product/d-7050-direct-digital-network-amplifier/) digital amplifier from Home Assistant. To add a NAD receiver to your installation, add the following to your `configuration.yaml` file: ```yaml # Example configuration.yaml entry media_player: - platform: nad7050 + platform: nadtcp host: 192.168.0.112 ``` From 1ef0168b06a449b86e99e7d91c5de7bc33c22d5d Mon Sep 17 00:00:00 2001 From: mwsluis Date: Thu, 8 Jun 2017 13:17:04 +0200 Subject: [PATCH 7/9] Made description more generic. --- source/_components/media_player.nadtcp.markdown | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/_components/media_player.nadtcp.markdown b/source/_components/media_player.nadtcp.markdown index bb29cf76af12..ad824e0d5c61 100644 --- a/source/_components/media_player.nadtcp.markdown +++ b/source/_components/media_player.nadtcp.markdown @@ -1,8 +1,8 @@ --- layout: page -title: "NAD D 7050" +title: "NAD tcp" description: "Instructions how to integrate the NAD D 7050 digital amplifier into Home Assistant." -date: 2017-04-01 20:00 +date: 2017-06-07 20:00 sidebar: true comments: false sharing: true @@ -14,7 +14,7 @@ ha_iot_class: "Local Polling" --- -The `nadtcp` platform allows you to control a [NAD D 7050](https://nadelectronics.com/product/d-7050-direct-digital-network-amplifier/) digital amplifier from Home Assistant. +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 receiver to your installation, add the following to your `configuration.yaml` file: @@ -28,7 +28,7 @@ media_player: Configuration variables: - **host** (*Required*): The IP address of your amplifier. -- **name** (*Optional*): Name of the device. Default is NAD D 7050. +- **name** (*Optional*): Name of the device. Default is NAD amplifier. - **min_volume** (*optional*): Minimum volume in dB to use with the slider. Default is `-60` - **max_volume** (*optional*): Maximum volume in dB to use with the slider. Default is `-10` - **volume_step** (*Optional*): The amount in dB you want to increase the volume with when pressing volume up/down. Default is 4 dB. From f4ae8a30b2e481a548815e169c11544421802feb Mon Sep 17 00:00:00 2001 From: mwsluis Date: Thu, 8 Jun 2017 13:18:06 +0200 Subject: [PATCH 8/9] more stuff --- source/_components/media_player.nadtcp.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_components/media_player.nadtcp.markdown b/source/_components/media_player.nadtcp.markdown index ad824e0d5c61..861284689743 100644 --- a/source/_components/media_player.nadtcp.markdown +++ b/source/_components/media_player.nadtcp.markdown @@ -1,7 +1,7 @@ --- layout: page title: "NAD tcp" -description: "Instructions how to integrate the NAD D 7050 digital amplifier into Home Assistant." +description: "Instructions how to integrate the NAD D 7050 or C338 digital amplifiers into Home Assistant." date: 2017-06-07 20:00 sidebar: true comments: false @@ -16,7 +16,7 @@ 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. -To add a NAD receiver 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: ```yaml # Example configuration.yaml entry From 1876ba130674967d61b064819dc681fca2d95e3c Mon Sep 17 00:00:00 2001 From: Adam Mills Date: Fri, 9 Jun 2017 14:50:56 -0400 Subject: [PATCH 9/9] Set release version --- source/_components/media_player.nadtcp.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_components/media_player.nadtcp.markdown b/source/_components/media_player.nadtcp.markdown index 861284689743..98a160f76b99 100644 --- a/source/_components/media_player.nadtcp.markdown +++ b/source/_components/media_player.nadtcp.markdown @@ -9,7 +9,7 @@ sharing: true footer: true logo: nad.png ha_category: Media Player -ha_release: 0.4x +ha_release: 0.47 ha_iot_class: "Local Polling" ---