mirror of
https://github.com/node-red/node-red-nodes.git
synced 2025-03-01 10:37:43 +00:00
update analysis and utility nodes info style
This commit is contained in:
@@ -6,9 +6,9 @@ A <a href="http://nodered.org" target="_new">Node-RED</a> node that provides a s
|
||||
Install
|
||||
-------
|
||||
|
||||
Run the following command in the root directory of your Node-RED install - usually ~/.node-red
|
||||
Run the following command in your Node-RED user directory - typically `~/.node-red`
|
||||
|
||||
npm install node-red-node-pidcontrol
|
||||
npm i node-red-node-pidcontrol
|
||||
|
||||
|
||||
Usage
|
||||
@@ -16,11 +16,11 @@ Usage
|
||||
|
||||
PID controller node.
|
||||
|
||||
This node ONLY expects a numeric **msg.payload** containing the current reading.
|
||||
This node ONLY expects a numeric `msg.payload` containing the current reading.
|
||||
|
||||
It will output the correction that needs to be applied in order to move to the preset **set point** value.
|
||||
|
||||
The damping factors are typically in the range 0 - 1.
|
||||
See <a href="https://en.wikipedia.org/wiki/PID_controller" target="_new">Wikipedia</a> for more details on PID controllers.
|
||||
|
||||
The **set point** may be overridden by **msg.setpoint**. If you do so the edit box value can be used as the initial value.
|
||||
The **set point** may be overridden by `msg.setpoint`. If you do so the edit box value can be used as the initial value.
|
||||
|
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name" : "node-red-node-pidcontrol",
|
||||
"version" : "0.0.2",
|
||||
"version" : "0.0.3",
|
||||
"description" : "A Node-RED node that that provides a simple PID controller.",
|
||||
"dependencies" : {
|
||||
"node-pid-controller": "0.0.3"
|
||||
|
@@ -41,10 +41,10 @@
|
||||
|
||||
<script type="text/x-red" data-help-name="PID control">
|
||||
<p>A PID controller node.</p>
|
||||
<p>This node ONLY expects a numeric <b>msg.payload</b> containing the current reading.
|
||||
<p>This node ONLY expects a numeric <code>msg.payload</code> containing the current reading.
|
||||
It will output the correction that needs to be applied in order to move to the preset <i>set point</i> value.</p>
|
||||
<p>See <a href="https://en.wikipedia.org/wiki/PID_controller" target="_new">Wikipedia</a> for more details.</p>
|
||||
<p>The <i>set point</i> may be overridden by <b>msg.setpoint</b>. If you do so the edit box value can be used as the initial value.</p>
|
||||
<p>The <i>set point</i> may be overridden by <code>msg.setpoint</code>. If you do so the edit box value can be used as the initial value.</p>
|
||||
</script>
|
||||
|
||||
<script type="text/javascript">
|
||||
|
Reference in New Issue
Block a user