Update temp.inc.sh

This commit is contained in:
2024-02-27 09:29:58 -06:00
parent bca43705f1
commit 67c8f7cfcf

View File

@@ -596,6 +596,7 @@ CHECKTEMP_SERVICE_RUNSENSOR(){
mqtt_message=`${mqtt_conn} -t tele/${SENSOR}/SENSOR -C 1`
echo ${mqtt_message} | cut -d':' -f 7 | cut -d',' -f 1 | read temp_h
echo ${mqtt_message} | cut -d':' -f 6 | cut -d',' -f 1 | read temp_c
echo "${SENSORa} = ${temp_c} - ${temp_h}"
elif [ "${PW_SENSOR_TYPE[${1}]}" == "tuya" ]; then
IFS=: read -r temp_c temp_h <<< $(GET_TUYA_TEMP ${1}); unset IFS