From 60f4d1a4b880fb43b71d64fcd0acf0324d04ca7d Mon Sep 17 00:00:00 2001 From: Gabe <36393392+sfgabe@users.noreply.github.com> Date: Tue, 24 Mar 2020 00:58:41 -0400 Subject: [PATCH] Update README.md --- RentersLightSwitch/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RentersLightSwitch/README.md b/RentersLightSwitch/README.md index 6adf6f6..d362998 100644 --- a/RentersLightSwitch/README.md +++ b/RentersLightSwitch/README.md @@ -53,7 +53,7 @@ __Switch for light in switches.yaml__ payload_off: "3" value_template: '{{ value_json.state }}' ``` -*Note: Home assistant sends MQTT messages as strings, which unfortunatly this JSON library doesnt parse. You may need to adjust for your switches [with this handy chart](https://www.cs.cmu.edu/~pattis/15-1XX/common/handouts/ascii.html). For example, my switch works with ON at 51 degrees (ascii payload "3") and OFF at 80 degrees (ascii payload "P").* +*Note: Home assistant sends MQTT messages as strings, which unfortunatly this Servo library doesnt parse correctly, so we need to convert degrees into ascii. You may need to adjust for your switches [with this handy chart](https://www.cs.cmu.edu/~pattis/15-1XX/common/handouts/ascii.html). For example, my switch works with OFF at 51 degrees (ascii payload "3") and ON at 80 degrees (ascii payload "P").* __Sensor for motion sensor in binary_sensor.yaml__ ```