From 3f1357125198e4815951303a07636810bdc4e551 Mon Sep 17 00:00:00 2001 From: Niklas Wagner Date: Sat, 31 Mar 2018 23:19:30 +0200 Subject: [PATCH] Properly quote things so ON/OFF don't become True/False (#5072) --- source/_components/light.mqtt.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_components/light.mqtt.markdown b/source/_components/light.mqtt.markdown index 0034abc2097..ed1536ecef2 100644 --- a/source/_components/light.mqtt.markdown +++ b/source/_components/light.mqtt.markdown @@ -95,12 +95,12 @@ payload_on: description: The payload that represents enabled state. required: false type: string - default: ON + default: "ON" payload_off: description: The payload that represents disabled state. required: false type: string - default: OFF + default: "OFF" qos: description: The maximum QoS level of the state topic. required: false