From 6856d45cfd32bc1a16e13f6802a4b9841550a52d Mon Sep 17 00:00:00 2001 From: Johann Kellerman Date: Sun, 17 Jul 2016 17:58:45 +0200 Subject: [PATCH] Update garage_door.rpi_gpio.markdown (#645) --- .../_components/garage_door.rpi_gpio.markdown | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/source/_components/garage_door.rpi_gpio.markdown b/source/_components/garage_door.rpi_gpio.markdown index bb5a83000bc..1a811738946 100644 --- a/source/_components/garage_door.rpi_gpio.markdown +++ b/source/_components/garage_door.rpi_gpio.markdown @@ -7,13 +7,22 @@ sidebar: true comments: false sharing: true footer: true -logo: wink.png +logo: raspberry-pi.png ha_category: Garage Door ha_release: 0.23 --- +This platform allows you to use a Raspberry PI to control your Garage door. + +It uses two pins on the Raspberry Pi. +- The `state_pin` will detect if the door is closed, and +- the `relay_pin` will trigger the door to open or close. + +Although you do not need AndrewsHilliday's software controller when you run Home Assistant, he has written clear instructions on how to hook your garage door & sensors up to your Raspberry Pi, which can be found [here](https://github.com/andrewshilliday/garage-door-controller#hardware-setup). + +Example configuration entry: + ```yaml -# Example configuration.yaml entry garage_door: platform: rpi_gpio doors: @@ -23,4 +32,6 @@ garage_door: - relay_pin: 12 state_pin: 13 name: 'Right door' -``` \ No newline at end of file +``` + +