tasmota-charge: fixes +

This commit is contained in:
mwiegand 2022-04-21 23:50:49 +02:00
parent f5ab497bff
commit f416852225

View file

@ -34,4 +34,11 @@ else
fi
echo "turning plug $TURN_PLUG"
curl -s "http://$PLUG_IP/cm?cmnd=Power%20$TURN_PLUG"
if curl --silent "http://$PLUG_IP/cm?cmnd=Power%20$TURN_PLUG" | jq -r .POWER | grep -q "^$TURN_PLUG\$"
then
echo "SUCCESS"
exit 0
else
echo "ERROR"
exit 53
fi