2022-02-16 22:06:07 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
#include "pico/stdlib.h"
|
|
|
|
#include "hardware/pwm.h"
|
|
|
|
#include "hardware/clocks.h"
|
|
|
|
#include "common/pimoroni_common.hpp"
|
|
|
|
|
|
|
|
namespace servo {
|
|
|
|
|
|
|
|
enum Type {
|
|
|
|
ANGULAR = 0,
|
|
|
|
LINEAR,
|
|
|
|
CONTINUOUS
|
|
|
|
};
|
|
|
|
|
|
|
|
class Calibration {
|
|
|
|
//--------------------------------------------------
|
|
|
|
// Constants
|
|
|
|
//--------------------------------------------------
|
|
|
|
public:
|
|
|
|
static constexpr float DEFAULT_MIN_PULSE = 500.0f; // in microseconds
|
|
|
|
static constexpr float DEFAULT_MID_PULSE = 1500.0f; // in microseconds
|
|
|
|
static constexpr float DEFAULT_MAX_PULSE = 2500.0f; // in microseconds
|
|
|
|
static constexpr float DEFAULT_VALUE_EXTENT = 90.0f; // a range of -90 to +90
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------
|
|
|
|
// Substructures
|
|
|
|
//--------------------------------------------------
|
|
|
|
public:
|
|
|
|
struct CalibrationPoint {
|
|
|
|
//--------------------------------------------------
|
|
|
|
// Constructors/Destructor
|
|
|
|
//--------------------------------------------------
|
|
|
|
CalibrationPoint();
|
|
|
|
CalibrationPoint(uint16_t pulse, float value);
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------
|
|
|
|
// Variables
|
|
|
|
//--------------------------------------------------
|
|
|
|
float pulse;
|
|
|
|
float value;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------
|
|
|
|
// Constructors/Destructor
|
|
|
|
//--------------------------------------------------
|
|
|
|
protected:
|
|
|
|
Calibration();
|
|
|
|
Calibration(Type type);
|
|
|
|
virtual ~Calibration();
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------
|
|
|
|
// Methods
|
|
|
|
//--------------------------------------------------
|
|
|
|
public:
|
|
|
|
void create_default_calibration(Type type);
|
|
|
|
bool create_blank_calibration(uint num_points); // Must have at least two points
|
|
|
|
void create_two_point_calibration(float min_pulse, float max_pulse, float min_value, float max_value);
|
|
|
|
void create_three_point_calibration(float min_pulse, float mid_pulse, float max_pulse, float min_value, float mid_value, float max_value);
|
|
|
|
bool create_uniform_calibration(uint num_points, float min_pulse, float min_value, float max_pulse, float max_value); // Must have at least two points
|
|
|
|
|
|
|
|
uint points();
|
|
|
|
bool get_point(uint8_t index, CalibrationPoint& point_out);
|
|
|
|
void set_point(uint8_t index, const CalibrationPoint& point); // Ensure the points are entered in ascending value order
|
|
|
|
|
|
|
|
void limit_to_calibration(bool lower, bool upper);
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------
|
|
|
|
// Variables
|
|
|
|
//--------------------------------------------------
|
|
|
|
protected:
|
|
|
|
CalibrationPoint* calibration;
|
|
|
|
uint calibration_points;
|
|
|
|
bool limit_lower;
|
|
|
|
bool limit_upper;
|
|
|
|
};
|
|
|
|
|
|
|
|
class Converter : public Calibration {
|
|
|
|
//--------------------------------------------------
|
|
|
|
// Constants
|
|
|
|
//--------------------------------------------------
|
|
|
|
public:
|
|
|
|
static constexpr float MIN_VALID_PULSE = 1.0f;
|
|
|
|
private:
|
|
|
|
static constexpr float LOWER_HARD_LIMIT = 500.0f; // The minimum microsecond pulse to send
|
|
|
|
static constexpr float UPPER_HARD_LIMIT = 2500.0f; // The maximum microsecond pulse to send
|
|
|
|
static constexpr float SERVO_PERIOD = 1000000 / 50; // This is hardcoded as all servos *should* run at this frequency
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------
|
|
|
|
// Constructors/Destructor
|
|
|
|
//--------------------------------------------------
|
|
|
|
public:
|
|
|
|
Converter() : Calibration() {}
|
|
|
|
Converter(Type type) : Calibration(type) {}
|
|
|
|
virtual ~Converter() {}
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------
|
|
|
|
// Methods
|
|
|
|
//--------------------------------------------------
|
|
|
|
public:
|
2022-02-17 17:59:09 +00:00
|
|
|
float get_min_value();
|
|
|
|
float get_mid_value();
|
|
|
|
float get_max_value();
|
2022-02-16 22:06:07 +00:00
|
|
|
float value_to_pulse(float value);
|
|
|
|
float value_from_pulse(float pulse);
|
|
|
|
|
|
|
|
static uint32_t pulse_to_level(float pulse, uint32_t resolution);
|
|
|
|
static float map_float(float in, float in_min, float in_max, float out_min, float out_max);
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|