Update powerwall.sh

This commit is contained in:
2022-09-03 14:45:49 -05:00
parent a80307e055
commit fed88d165a

View File

@@ -46,8 +46,7 @@ CHECKTEMP_SERVICE(){
echo $mqtt_message | cut -d'T' -f 2 | cut -d"\"" -f 3 | read temp_d
echo $mqtt_message | cut -d'T' -f 3 | cut -d"\"" -f 1 | read temp_t
if [ "$temp_c" != "null" ] && [ "$temp_c" != "" ]; then
temp_f=`echo "scale=2; $temp_c*1.8 + 32" | bc`
temp_f=$((${temp_f%.*} + 1))
temp_f=`echo "scale=2; $temp_c*1.8 + 33" | bc`
#echo "$temp_c -> $temp_f"