node-red-nodes/io/emoncms
Dave Conway-Jones f74a2f4d04 Revert emoncms label change 2015-12-13 09:47:26 +00:00
..
icons Tweak emoncms logo to closer match other styles 2014-02-14 20:45:59 +00:00
88-emoncms.html Revert emoncms label change 2015-12-13 09:47:26 +00:00
88-emoncms.js Emoncms - drop time if not a number 2015-12-09 13:21:42 +00:00
LICENSE Fix emoncms spilling mistake 2015-01-04 20:34:12 +00:00
README.md Emoncms - drop time if not a number 2015-12-09 13:21:42 +00:00
package.json Revert emoncms label change 2015-12-13 09:47:26 +00:00

README.md

node-red-node-emoncms

A Node-RED node to send fetch/post data to/from emoncms.org or any other emoncms server.

Install

Run the following command in the root directory of your Node-RED install

    npm install node-red-node-emoncms

Usage

Emoncms post.

The msg.payload can contain either a comma separated list of name value pairs, e.g.

    name:value,...

or a comma separated list of values, e.g.

    1,2,..

or a simple javascript object e.g.

    msg.payload = {temp:12, humidity:56};

If Nodegroup is left blank msg.nodegroup will used (if set). This should be a numeric value.

Insertion time can be manipulated by setting msg.time. This must be in epoch format - i.e. seconds since 1970.

Emoncms In:

Fetches last emoncms feed value, returns a numerical value.