Add PID Controller node

This commit is contained in:
dceejay
2015-04-23 14:31:08 +01:00
parent 18c866b490
commit 578b010ab0
5 changed files with 346 additions and 0 deletions

24
function/PID/package.json Normal file
View File

@@ -0,0 +1,24 @@
{
"name" : "node-red-node-pidcontrol",
"version" : "0.0.1",
"description" : "A Node-RED node that that provides a simple PID controller.",
"dependencies" : {
"node-pid-controller": "0.0.3"
},
"repository" : {
"type":"git",
"url":"https://github.com/node-red/node-red-nodes/tree/master/function/PID"
},
"license": "Apache",
"keywords": [ "node-red", "PID", "control" ],
"node-red" : {
"nodes" : {
"PID control": "pidcontrol.js"
}
},
"author": {
"name": "Dave Conway-Jones",
"email": "ceejay@vnet.ibm.com",
"url": "http://nodered.org"
}
}