From bce66a0b971da362c71dffcffc5fcee10de54b96 Mon Sep 17 00:00:00 2001 From: Agneev Mukherjee <19761269+agneevX@users.noreply.github.com> Date: Wed, 29 Apr 2020 00:13:59 +0530 Subject: [PATCH] Updated code syntax (#13198) --- source/_integrations/telnet.markdown | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/source/_integrations/telnet.markdown b/source/_integrations/telnet.markdown index 26696454e4d..da958068bfa 100644 --- a/source/_integrations/telnet.markdown +++ b/source/_integrations/telnet.markdown @@ -16,16 +16,16 @@ To enable this switch, add the following lines to your `configuration.yaml` file ```yaml # Example configuration.yaml entry switch: - platform: telnet - switches: - projector: - resource: THE_IP_ADDRESS - port: 4002 - command_on: "PWR ON" - command_off: "PWR OFF" - command_state: "PWR?" - value_template: '{{ value == "PWR=01" }}' - timeout: 0.9 + - platform: telnet + switches: + projector: + resource: THE_IP_ADDRESS + port: 4002 + command_on: "PWR ON" + command_off: "PWR OFF" + command_state: "PWR?" + value_template: '{{ value == "PWR=01" }}' + timeout: 0.9 ``` {% endraw %}