You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
927 B

#ifndef PID_h
#define PID_h
#include <avr/eeprom.h>
#include "WProgram.h"
//#define PID_SIZE 8
class PID {
public:
PID();
long get_pid(long err, long dt, float scaler);
void reset_I();
void load_gains(int address);
void save_gains(int address);
void load_gains(float * gain_array);
void save_gains(float * gain_array);
void set_P(float p);
void set_I(float i);
void set_D(float d);
void set_imax(int imax);
void test(void);
float get_P(void);
float get_I(void);
float get_D(void);
int get_imax(void);
float _imax; // integrator max
float _integrator; // integrator value
float _last_error; // last error for derivative
float _kp;
float _ki;
float _kd;
private:
static uint8_t RC = 20; // low pass filter cut frequency
// for derivative calculation,
// set to 20 Hz becasue anything over that
// is probably noise, see
// http://en.wikipedia.org/wiki/Low-pass_filter
};
#endif