From ae4b174aeb7fb37f0d2c16b5c3487b5c1b191aad Mon Sep 17 00:00:00 2001 From: Bram Kragten Date: Thu, 6 Jun 2019 17:58:31 +0200 Subject: [PATCH] Remote rpi gpio: address -> host (#9575) --- source/_components/remote_rpi_gpio.markdown | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/source/_components/remote_rpi_gpio.markdown b/source/_components/remote_rpi_gpio.markdown index 50f75828065..a4ee49f14b8 100644 --- a/source/_components/remote_rpi_gpio.markdown +++ b/source/_components/remote_rpi_gpio.markdown @@ -28,20 +28,20 @@ To use your Remote Raspberry Pi's GPIO in your installation, add the following t # Example configuration.yaml entry binary_sensor: - platform: remote_rpi_gpio - address:
+ host:
ports: 11: PIR Office 12: PIR Bedroom switch: - platform: remote_rpi_gpio - address:
+ host:
ports: 4: Garage Relay ``` {% configuration %} -address: +host: description: IP Address of remote Raspberry Pi required: true type: string @@ -81,14 +81,14 @@ To use your Remote Raspberry Pi's GPIO in your installation, add the following t # Example configuration.yaml entry switch: - platform: remote_rpi_gpio - address: 192.168.0.123 + host: 192.168.0.123 ports: 11: Fan Office 12: Light Desk ``` {% configuration %} -address: +host: description: IP Address of remote Raspberry Pi required: true type: string @@ -121,7 +121,7 @@ For example, if you have a relay connected to pin 11 its GPIO # is 17. # Example configuration.yaml entry switch: - platform: remote_rpi_gpio - address: 192.168.0.123 + host: 192.168.0.123 ports: 17: Speaker Relay ```