Skip to content

Commit ffe3426

Browse files
committed
Update README.md
1 parent 1e1a72a commit ffe3426

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
Let's take the example of a car cruise control. We want the car driving at 120km/h.
1313

1414
### Create a Controller instance
15-
`k_p`, `k_i` and `k_d` are the proportional, integral and derivative terms, `dt` is the interval of time between two measures.
15+
`k_p`, `k_i` and `k_d` are the proportional, integral and derivative terms. `dt` is the interval of time between two measures. If not set, it will be automatically calculated.
1616
```js
1717
var Controller = require('node-pid-controller');
1818
var ctr = new Controller(0.25, 0.01, 0.01, 1); // k_p, k_i, k_d, dt

0 commit comments

Comments
 (0)