diff --git a/source/_components/garage_door.rpi_gpio.markdown b/source/_components/garage_door.rpi_gpio.markdown index ecdae40cb0a..999df82fdc9 100644 --- a/source/_components/garage_door.rpi_gpio.markdown +++ b/source/_components/garage_door.rpi_gpio.markdown @@ -26,6 +26,8 @@ To enable Raspberry Pi Garage doors in your installation, add the following to y # Example configuration.yaml entry garage_door: platform: rpi_gpio + state_pull_mode: DOWN + relay_time: 1 doors: - relay_pin: 10 state_pin: 11 @@ -41,4 +43,6 @@ Configuration variables: - **name** (*Optional*): Name to use in the Frontend. - **relay_pin** (*Required*): The pin of your Raspberry Pi where the relay is connected. - **state_pin** (*Required*): The pin of your Raspberry Pi to retrieve the state. + - **state_pull_mode** (*Optional*): The direction the State pin is pulling. It can be UP or DOWN. Default is UP. + - **relay_time** (*Optional*): The time that the relay will be on for in seconds. Default is .2 seconds.