machines/components/pid-controller/firmware/MultiPIDController.h
2024-01-20 15:04:46 +01:00

27 lines
482 B
C++

#ifndef MULTI_PID_CONTROLLER_H
#define MULTI_PID_CONTROLLER_H
#include <Arduino.h>
#include <Streaming.h>
#include "../Addon.h"
#include "../config.h"
#include "./common/macros.h"
#include "./common/ppmath.h"
class Partition;
class MultiPIDController : public Addon
{
public:
MultiPIDController() : Addon(MPID_CTRL_STR, MPIDCTRL, ADDON_STATED)
{
this->setFlag(DEBUG);
}
private:
Partition *partions[MAX_PARTITIONS];
};
#endif