Node-RED/CheatSheet: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

28 September 2024

19 May 2024

18 May 2024

  • curprev 11:4311:43, 18 May 2024Marcluer talk contribsm 529 bytes +27 No edit summary Tag: Visual edit
  • curprev 11:4211:42, 18 May 2024Marcluer talk contribs 502 bytes +502 Created page with "== Global variables == <pre> var labelmode = global.get("labelmode") </pre> == Node Status == <pre> node.status({fill:"gray",shape:"dot",text:msg.serialnumber + " = " + msg.pclass + "W"}); </pre> == Stop messages == <pre> if ( ...)) { return null; } else { return msg; } </pre> == InfluxDB == * write data with custom timestamp <pre> var timestamp = new Date(date + 'Z').getTime() * 1e6 msg = { payload : { value: value, time: timestamp },..."