2014-02-07 12:08:16 +01:00
|
|
|
|
2015-10-25 11:07:54 +01:00
|
|
|
<script type="text/x-red" data-template-name="emoncms">
|
2014-02-07 12:08:16 +01:00
|
|
|
<div class="form-row">
|
2014-09-03 17:12:26 +02:00
|
|
|
<label for="node-input-emonServer"><i class="fa fa-globe"></i> Emoncms server</label>
|
2014-02-07 12:08:16 +01:00
|
|
|
<input type="text" id="node-input-emonServer">
|
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
2015-12-13 10:47:26 +01:00
|
|
|
<label for="node-input-nodegroup"><i class="fa fa-object-group"></i> Node</label>
|
2018-01-07 16:37:28 +01:00
|
|
|
<input type="text" id="node-input-nodegroup" placeholder="or set by msg.nodegroup">
|
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
|
|
|
<label for="node-input-datatype"><i class="fa fa-tag"></i> Data Type</label>
|
|
|
|
<select id="node-input-datatype" style="width:180px;">
|
|
|
|
<option value="legacy">Legacy Processing</option>
|
|
|
|
<option value="fulljson">Valid JSON object</option>
|
|
|
|
<option value="json">Simple JSON</option>
|
|
|
|
<option value="CSV">CSV</option>
|
|
|
|
</select>
|
2014-02-07 12:08:16 +01:00
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
2014-09-03 17:12:26 +02:00
|
|
|
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
|
2014-02-09 00:21:17 +01:00
|
|
|
<input type="text" id="node-input-name" placeholder="Emoncms">
|
2014-02-07 12:08:16 +01:00
|
|
|
</div>
|
2018-01-07 16:37:28 +01:00
|
|
|
|
2014-02-07 12:08:16 +01:00
|
|
|
</script>
|
|
|
|
|
2015-10-25 11:07:54 +01:00
|
|
|
<script type="text/x-red" data-help-name="emoncms">
|
2015-01-04 21:34:12 +01:00
|
|
|
<p>Posts data to Emoncms.</p>
|
2016-03-02 14:26:19 +01:00
|
|
|
<p>The <code>msg.payload</code> can contain either a comma separated list of name
|
2018-01-07 16:37:28 +01:00
|
|
|
value pairs (legacy) e.g. <pre>name:value,...</pre> or a comma separated list of values (CSV) e.g. <pre>1,2,...</pre>
|
|
|
|
an Emoncms simple data object e.g. <pre>{temp:12}</pre>
|
|
|
|
or a valid JSON object e.g. <pre>{"Total":3.273,"Yesterday":1.695}</pre>
|
|
|
|
<p>The node must be specified either by the <i>Node</i> element or if left blank by <code>msg.nodegroup</code></p>
|
|
|
|
<p>Data Type must be one of <pre>legacy, json, fulljson, CSV</pre></p>
|
|
|
|
<p>Insertion time can be set by using <code>msg.time</code>.
|
|
|
|
This can either be a valid ISO 8601 format or seconds since 1970. Not setting a time or setting an incorrect
|
|
|
|
time format will result in data being pushed to Emoncms without the time element.</p>
|
|
|
|
<p>The output node contains the server response</p>
|
2014-02-07 12:08:16 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
2015-10-25 11:07:54 +01:00
|
|
|
RED.nodes.registerType('emoncms',{
|
2014-02-07 12:08:16 +01:00
|
|
|
category: 'output',
|
|
|
|
color:"rgb(91, 192, 222)",
|
2014-02-14 21:45:59 +01:00
|
|
|
defaults: {
|
2018-01-07 16:37:28 +01:00
|
|
|
name: {value:"Emoncms Push"},
|
2014-02-07 12:08:16 +01:00
|
|
|
emonServer: {type:"emoncms-server", required:true},
|
2018-01-07 16:37:28 +01:00
|
|
|
nodegroup: {value:"", validate:function(v) {return ((v === "")||(/^[\d\w\s.-]*$/).test(v));} },
|
|
|
|
datatype: {value:"legacy"}
|
2014-02-07 12:08:16 +01:00
|
|
|
},
|
|
|
|
inputs:1,
|
|
|
|
outputs:0,
|
2014-02-14 21:45:59 +01:00
|
|
|
icon: "emoncms.png",
|
2014-02-07 12:08:16 +01:00
|
|
|
align: "right",
|
|
|
|
label: function() {
|
|
|
|
return this.name||this.baseurl;
|
|
|
|
},
|
|
|
|
labelStyle: function() {
|
|
|
|
return this.name?"node_label_italic":"";
|
2018-01-07 16:37:28 +01:00
|
|
|
},
|
|
|
|
oneditprepare: function() {
|
|
|
|
if (this.datatype === undefined) {
|
|
|
|
$("#node-input-datatype").val("legacy");
|
|
|
|
}
|
2014-02-07 12:08:16 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2015-10-21 13:08:30 +02:00
|
|
|
<script type="text/x-red" data-template-name="emoncms in">
|
|
|
|
<div class="form-row">
|
|
|
|
<label for="node-input-emonServer"><i class="fa fa-globe"></i> Emoncms server</label>
|
|
|
|
<input type="text" id="node-input-emonServer">
|
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
|
|
|
<label for="node-input-feedid"><i class="fa fa-tag"></i> Feed ID</label>
|
|
|
|
<input type="text" id="node-input-feedid" placeholder="">
|
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
|
|
|
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
|
|
|
|
<input type="text" id="node-input-name" placeholder="Emoncms">
|
|
|
|
</div>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/x-red" data-help-name="emoncms in">
|
|
|
|
<p>Fetches data from emoncms.</p>
|
2021-02-07 23:32:58 +01:00
|
|
|
<p>The <code>msg.topic</code> contains the name of the Feed</p>
|
|
|
|
<p>The <code>msg.payload</code> contains last emoncms feed value</p>
|
|
|
|
<p>The <code>msg.feed_data</code> contains all the feed data</p>
|
2015-10-21 13:08:30 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
RED.nodes.registerType('emoncms in',{
|
|
|
|
category: 'input',
|
|
|
|
color:"rgb(91, 192, 222)",
|
|
|
|
defaults: {
|
|
|
|
name: {value:"Emoncms"},
|
|
|
|
emonServer: {type:"emoncms-server", required:true},
|
|
|
|
feedid: {value:""}
|
|
|
|
},
|
|
|
|
inputs:1,
|
|
|
|
outputs:1,
|
|
|
|
icon: "emoncms.png",
|
|
|
|
align: "right",
|
|
|
|
label: function() {
|
|
|
|
return this.name||this.baseurl;
|
|
|
|
},
|
|
|
|
labelStyle: function() {
|
|
|
|
return this.name?"node_label_italic":"";
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-02-07 12:08:16 +01:00
|
|
|
<script type="text/x-red" data-template-name="emoncms-server">
|
|
|
|
<div class="form-row">
|
2014-09-03 17:12:26 +02:00
|
|
|
<label for="node-config-input-server"><i class="fa fa-globe"></i> Base URL</label>
|
2014-02-07 12:08:16 +01:00
|
|
|
<input type="text" id="node-config-input-server">
|
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
2014-09-03 17:12:26 +02:00
|
|
|
<label for="node-config-input-apikey"><i class="fa fa-tasks"></i> API key</label>
|
2014-02-07 12:08:16 +01:00
|
|
|
<input type="text" id="node-config-input-apikey">
|
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
2014-09-03 17:12:26 +02:00
|
|
|
<label for="node-config-input-name"><i class="fa fa-tag"></i> Name</label>
|
2014-02-07 12:08:16 +01:00
|
|
|
<input type="text" id="node-config-input-name">
|
|
|
|
</div>
|
|
|
|
<div class="form-tips">The <b>Base URL</b> is the URL to the Emoncms root directory.</div>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
RED.nodes.registerType('emoncms-server',{
|
|
|
|
category: 'config',
|
|
|
|
defaults: {
|
|
|
|
server: {value:"http://localhost",required:true},
|
|
|
|
name: {value:""}
|
|
|
|
},
|
2015-02-06 22:10:14 +01:00
|
|
|
credentials: {
|
|
|
|
apikey: {type:"text"}
|
|
|
|
},
|
2014-02-07 12:08:16 +01:00
|
|
|
label: function() {
|
|
|
|
return this.name||this.server;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|