diff --git a/powerwall.sh b/powerwall.sh index 163f1679..d90a4dab 100755 --- a/powerwall.sh +++ b/powerwall.sh @@ -15,6 +15,7 @@ source /opt/idssys/defaults/default.inc GETTEMP(){ mqtt_message=`mosquitto_sub -h 10.10.1.180 -t tasmota/discovery/${SENSOR_MQTTID[$1]}/sensors -u homeassistant -P 12home34assistant56 -C 1` + echo $mqtt_message echo $mqtt_message | cut -d':' -f 7 | cut -d',' -f 1 | read temp_c if [ "$temp_c" != "null" ] && [ "$temp_c" != "" ]; then temp_f=`echo "scale=2; $temp_c*1.8 + 32" | bc`