2021-01-29 06:31:58 -05:00
|
|
|
#pragma once
|
|
|
|
//
|
|
|
|
// FILE: runningAngle.h
|
|
|
|
// AUTHOR: Rob Tillaart
|
2021-05-28 07:43:31 -04:00
|
|
|
// VERSION: 0.1.2
|
2021-01-29 06:31:58 -05:00
|
|
|
// PURPOSE: Library to average angles by means of low pass filtering with wrapping.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "Arduino.h"
|
|
|
|
#include "math.h"
|
|
|
|
|
|
|
|
|
2021-05-28 07:43:31 -04:00
|
|
|
#define RUNNING_ANGLE_LIB_VERSION (F("0.1.2"))
|
2021-01-29 06:31:58 -05:00
|
|
|
|
|
|
|
|
|
|
|
class runningAngle
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum AngleType { DEGREES, RADIANS };
|
|
|
|
|
|
|
|
runningAngle(const enum AngleType type = DEGREES);
|
|
|
|
|
|
|
|
// first value added will not use the weight to set the initial value.
|
|
|
|
float add(float angle); // returns new average
|
|
|
|
void reset();
|
|
|
|
float getAverage() { return _average; };
|
|
|
|
|
|
|
|
void setWeight(float w) { _weight = constrain(w, 0.001, 1); };
|
|
|
|
float getWeight() { return _weight; };
|
|
|
|
enum AngleType type() { return _type; };
|
|
|
|
|
|
|
|
// reformat angle to -180..+180 (degrees) or -PI..PI (radians)
|
|
|
|
float wrap(float angle);
|
|
|
|
|
|
|
|
private:
|
|
|
|
enum AngleType _type;
|
|
|
|
float _average = 0;
|
|
|
|
float _weight;
|
|
|
|
bool _reset;
|
|
|
|
};
|
|
|
|
|
2021-05-28 07:43:31 -04:00
|
|
|
|
2021-01-29 06:31:58 -05:00
|
|
|
// -- END OF FILE --
|