update io nodes info style

This commit is contained in:
Dave Conway-Jones
2016-03-02 13:26:19 +00:00
parent 81c532fdce
commit 0880ad3987
17 changed files with 64 additions and 62 deletions

View File

@@ -31,11 +31,11 @@
<script type="text/x-red" data-help-name="emoncms">
<p>Posts data to Emoncms.</p>
<p>The <b>msg.payload</b> can contain either a comma separated list of name
<p>The <code>msg.payload</code> can contain either a comma separated list of name
value pairs e.g. <pre>name:value,...</pre> or a comma separated list of values e.g. <pre>1,2,...</pre>
or a simple javascript object e.g. <pre>msg.payload = {temp:12}</pre>
<p>If <i>Node</i> is left blank <b>msg.nodegroup</b> will used.</p>
<p>Insertion time can be manipulated by setting <b>msg.time</b>.
<p>If <i>Node</i> is left blank <code>msg.nodegroup</code> will used.</p>
<p>Insertion time can be manipulated by setting <code>msg.time</code>.
This must be in epoch format - seconds since 1970.</p>
</script>
@@ -82,7 +82,7 @@
<script type="text/x-red" data-help-name="emoncms in">
<p>Fetches data from emoncms.</p>
<p>The <b>msg.payload</b> contains last emoncms feed value
<p>The <code>msg.payload</code> contains last emoncms feed value
</script>
<script type="text/javascript">

View File

@@ -6,7 +6,7 @@ A <a href="http://nodered.org" target="_new">Node-RED</a> node to send fetch/pos
Install
-------
Run the following command in the root directory of your Node-RED install
Run the following command in your Node-RED user directory - typically `~/.node-red`
npm install node-red-node-emoncms

View File

@@ -1,6 +1,6 @@
{
"name" : "node-red-node-emoncms",
"version" : "0.0.9",
"version" : "0.0.10",
"description" : "A Node-RED node to fetch/post data to/from emoncms",
"dependencies" : {
},