From bbe7891c4a5e4d314f65e90ca01ae3e2da582212 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 18 Dec 2016 09:51:13 +0100 Subject: [PATCH] Change indent --- source/_components/cover.rpi_gpio.markdown | 27 +++++++++++----------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/source/_components/cover.rpi_gpio.markdown b/source/_components/cover.rpi_gpio.markdown index e51d150d2d5..35588b23df9 100644 --- a/source/_components/cover.rpi_gpio.markdown +++ b/source/_components/cover.rpi_gpio.markdown @@ -26,10 +26,10 @@ To enable Raspberry Pi Covers in your installation, add the following to your `c ```yaml # Example configuration.yaml entry cover: - platform: rpi_gpio - covers: - - relay_pin: 10 - state_pin: 11 + - platform: rpi_gpio + covers: + - relay_pin: 10 + state_pin: 11 ``` Configuration variables: @@ -46,15 +46,14 @@ Full example: ```yaml # Example configuration.yaml entry cover: - platform: rpi_gpio - relay_time: 0.2 - state_pull_mode: 'UP' - covers: - - relay_pin: 10 - state_pin: 11 - - relay_pin: 12 - state_pin: 13 - name: 'Right door' + - platform: rpi_gpio + relay_time: 0.2 + state_pull_mode: 'UP' + covers: + - relay_pin: 10 + state_pin: 11 + - relay_pin: 12 + state_pin: 13 + name: 'Right door' ``` -