Skip to content

Instantly share code, notes, and snippets.

@MinaMal
Last active December 11, 2022 10:25
Show Gist options
  • Save MinaMal/b8b032f2a1b773ec6e4df1fb8c0516e7 to your computer and use it in GitHub Desktop.
Save MinaMal/b8b032f2a1b773ec6e4df1fb8c0516e7 to your computer and use it in GitHub Desktop.
Node-RED JavaScript - Function node
a = msg.payload.value/10
if (a > 31.0)
{
msg.payload.alarm = 1;
}
else
{
msg.payload.alarm = 0;
}
return msg;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment