first creation of PID controller + adjustments to pumpingstation

This commit is contained in:
znetsixe
2025-11-10 13:41:41 +01:00
parent efe4a5f97d
commit 6be3bf92ef
4 changed files with 527 additions and 94 deletions

11
src/pid/index.js Normal file
View File

@@ -0,0 +1,11 @@
const PIDController = require('./PIDController');
/**
* Convenience factory for one-line instantiation.
*/
const createPidController = (options) => new PIDController(options);
module.exports = {
PIDController,
createPidController
};