From b78348bb670932c21c437eb0e4d54da8e10493f4 Mon Sep 17 00:00:00 2001 From: Dan Olson Date: Tue, 20 Sep 2016 09:39:53 -0400 Subject: [PATCH] Cover: Fix typos and pass payload that matches example (#965) --- source/_components/cover.mqtt.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_components/cover.mqtt.markdown b/source/_components/cover.mqtt.markdown index 9723c560553..a1859e425f4 100644 --- a/source/_components/cover.mqtt.markdown +++ b/source/_components/cover.mqtt.markdown @@ -33,7 +33,7 @@ cover: qos: 0 retain: true payload_open: "PAYLOAD_OPEN" - payload_close: "PAYLOD__CLOSE" + payload_close: "PAYLOAD_CLOSE" payload_stop: "PAYLOAD_STOP" state_open: "STATE_OPEN" state_closed: "STATE_CLOSED" @@ -60,6 +60,6 @@ Configuration variables: For a quick check you can use the commandline tools shipped with `mosquitto` to send MQTT messages. Set the state of your sensor manually: ```bash -$ mosquitto_pub -h 127.0.0.1 -t home-assistant/cover/set -m "OFF" +$ mosquitto_pub -h 127.0.0.1 -t home-assistant/cover/set -m "PAYLOAD_CLOSE" ```