JMcKain Posted February 15, 2023 Posted February 15, 2023 Request for info When writing an email body I want to include the temperature from an ECOWITT node server TEMP/Humidity Doing this for an Insteon thermostat works as below. ${sys.node.2F 7D 2 1.name} Temperature: ${sys.node.2F 7D 2 1.ST}F Humidity: ${sys.node.2F 7D 2 1.CLIHUM} What would be the format for a Node Server device like my node003_wh31_3 device?
Solution Bumbershoot Posted February 15, 2023 Solution Posted February 15, 2023 7 minutes ago, JMcKain said: Request for info When writing an email body I want to include the temperature from an ECOWITT node server TEMP/Humidity Doing this for an Insteon thermostat works as below. ${sys.node.2F 7D 2 1.name} Temperature: ${sys.node.2F 7D 2 1.ST}F Humidity: ${sys.node.2F 7D 2 1.CLIHUM} What would be the format for a Node Server device like my node003_wh31_3 device? Here's what the variable substitution value looks like for an ECOWITT moisture sensor: ${sys.node.n005_wh51_1.ST} You can click on the "Nodes" button on your node server to see the values for each device. Below are the possible values for the moisture sensor:
bpwwer Posted February 16, 2023 Posted February 16, 2023 For the ecowitt ${sys.node.node003_wh31_3.name} Temperature: ${sys.node.node003_wh31_3.ST}F Humidity: ${sys.node.node003_wh31_3CLIHUM}
MrBill Posted February 16, 2023 Posted February 16, 2023 14 hours ago, bpwwer said: Humidity: ${sys.node.node003_wh31_3CLIHUM} you might be missing a . Humidity: ${sys.node.node003_wh31_3.CLIHUM}
Recommended Posts