blob: e66b6fc2e8398fd239c7deb451e75fde3568ea35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
#ifndef CALIBRATION_HPP
#define CALIBRATION_HPP
#include "sensor/sensor.hpp"
#include "utils/memory.hpp"
#include "utils/serial.hpp"
// Calibration precision
#define ACCEL_CAL_X_MAX 0.006
#define ACCEL_CAL_X_MIN -0.006
#define ACCEL_CAL_Y_MAX 0.006
#define ACCEL_CAL_Y_MIN -0.006
#define ACCEL_CAL_Z_MAX 0.006
#define ACCEL_CAL_Z_MIN -0.006
#define GYRO_CAL_X_MAX 0.06
#define GYRO_CAL_X_MIN -0.06
#define GYRO_CAL_Y_MAX 0.06
#define GYRO_CAL_Y_MIN -0.06
#define GYRO_CAL_Z_MAX 0.06
#define GYRO_CAL_Z_MIN -0.06
#define CALIBRATION_TIMEOUT 120000 // Milliseconds
#define SENSOR_READ_CNT 20
#define SENSOR_VAL_ADJUST 0.05
/**
* Sensor calibrator.
*/
class SensorCalibrator
{
public:
/**
* Sensor calibrator.
*
* @param sensor A sensor to calibrate
* @param sout A Serial output stream
*/
SensorCalibrator(unique_ptr<Sensor> &sensor, SerialStream sout);
/**
* Calibrates the sensor.
*
* @param throttle_time The sensor's throttle time
* @returns Whether or not the calibration succeeded. Will return false on
* timeout.
*/
bool calibrate(unsigned int throttle_time);
private:
void _resetValues();
void _updateValues();
void _adjustValues();
bool _isValuesInRange();
void _adjustCalibration();
unique_ptr<Sensor> &_sensor;
SerialStream _sout;
float _accel_x;
float _accel_y;
float _accel_z;
float _gyro_x;
float _gyro_y;
float _gyro_z;
};
#endif
|