MiniPID-Java icon indicating copy to clipboard operation
MiniPID-Java copied to clipboard

PID controller designed for quickly and easily implementing stable closed loop control.

Results 6 MiniPID-Java issues
Sort by recently updated
recently updated
newest added

I was wondering if there is any reason you called this library "mini"PID (and not just PID).

At line https://github.com/tekdemo/MiniPID-Java/blob/master/src/com/stormbots/MiniPID.java#L304 you reset the error sum, if the output reaches a limit - but if the output reached the limit because of the I-term going (correctly) towards the...

This is a simple yet effective PID controller for Java. If you publish it to maven central it will become much easier to use in a project with a simple...

Hi, I suggest adding a checkSigns() call in this method, else it has no direct effect. public void setDirection(boolean reversed){ this.reversed=reversed; checkSigns(); } Guillaume

The MiniPID.java code in the refactor branch has a problem and cannot run in the main class.