Release: Sonoff Tasmota Switch Driver

I added the following lines at line 72. Fixes the issue completely.

else if ((resultJson?."POWER" in ["ON", 1, "1"])) {
setSwitchState(true)
}
else if ((resultJson?."POWER" in ["OFF", 0, "0"])) {
setSwitchState(false)
}