Skip to content

Instantly share code, notes, and snippets.

@MinaMal
Last active December 11, 2022 10:33
Show Gist options
  • Save MinaMal/4b38f5772326e6a2a529a55b1c8ab65f to your computer and use it in GitHub Desktop.
Save MinaMal/4b38f5772326e6a2a529a55b1c8ab65f to your computer and use it in GitHub Desktop.
Node-RED JavaScript - Email node
var a = msg.payload.value/10;
if (msg.payload.alarm == 1)
{
msg.payload.text = "Critical Temperature Reached: " + a + "°C"
}
else
{
msg.payload.text = "Critical Temperature Reduced: " + a + "°C"
}
msg.payload = msg.payload.text;
return msg;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment