template for students for mirror actuator

Dependencies:   FastPWM

Lib_Cntrl/PID_Cntrl.cpp

Committer:
altb2
Date:
2021-05-02
Revision:
0:d2e117716219
Child:
1:a7fc1afe0575

File content as of revision 0:d2e117716219:

/*
*/

#include "PID_Cntrl.h"

PID_Cntrl::PID_Cntrl(float P, float I, float D, float tau_f, float Ts, float uMin, float uMax)
{
    // ------------------
}

PID_Cntrl::~PID_Cntrl() {}

void PID_Cntrl::reset(float initValue)
{

    // -----------------------
}


float PID_Cntrl::update(float e)
{
    // the main update 
    return 0.0;
}