All public logs
Combined display of all available logs of Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 11:42, 18 May 2024 Marcluer talk contribs created page Node-RED/CheatSheet (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 },...")