Skip to content

Commit cef08dd

Browse files
author
Philmod
committed
readme
1 parent c9e1a82 commit cef08dd

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# node-pid-controller
22

3-
Node.js PID controller
3+
Simple Node.js PID controller
44

55
![pid](http://upload.wikimedia.org/wikipedia/commons/9/91/PID_en_updated_feedback.svg)
66

@@ -27,7 +27,8 @@ ctr.setTarget(120); // 120km/h
2727
var correction = ctr.update(110); // 110km/h is the current speed
2828
```
2929

30-
### Normally, you use the correction to a measure, in a closed loop
30+
### Real example
31+
Normally, you use the correction to a measure, in a closed loop
3132
```js
3233
var goalReached = false
3334
while (!goalReached) {
@@ -40,7 +41,7 @@ while (!goalReached) {
4041

4142
## Test
4243
```js
43-
mocha test;
44+
mocha test
4445
```
4546

4647
## Author

0 commit comments

Comments
 (0)