We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9e1a82 commit cef08ddCopy full SHA for cef08dd
README.md
@@ -1,6 +1,6 @@
1
# node-pid-controller
2
3
- Node.js PID controller
+ Simple Node.js PID controller
4
5

6
@@ -27,7 +27,8 @@ ctr.setTarget(120); // 120km/h
27
var correction = ctr.update(110); // 110km/h is the current speed
28
```
29
30
-### Normally, you use the correction to a measure, in a closed loop
+### Real example
31
+Normally, you use the correction to a measure, in a closed loop
32
```js
33
var goalReached = false
34
while (!goalReached) {
@@ -40,7 +41,7 @@ while (!goalReached) {
40
41
42
## Test
43
-mocha test;
44
+mocha test
45
46
47
## Author
0 commit comments