2020-02-26 18:51:46 +01:00
|
|
|
#include "PID_v2.h"
|
2020-02-29 22:10:53 +01:00
|
|
|
|
2020-11-04 17:46:14 +01:00
|
|
|
#include "systems/systems.h"
|
2020-02-21 13:37:32 +01:00
|
|
|
|
2020-10-31 15:37:38 +01:00
|
|
|
//Note: those variables can be changes, and will need to change depending on camera calibration
|
|
|
|
|
|
|
|
//Camera center: those setpoints correspond to the center of the field
|
2021-01-31 18:41:27 +01:00
|
|
|
#define CAMERA_CENTER_X -10
|
|
|
|
#define CAMERA_CENTER_Y 20
|
2020-10-31 15:37:38 +01:00
|
|
|
|
|
|
|
//Camera goal: those setpoints correspond to the position of the center of the goal on the field
|
2020-03-09 17:10:22 +01:00
|
|
|
#define CAMERA_GOAL_X 0
|
2021-01-31 18:41:27 +01:00
|
|
|
#define CAMERA_GOAL_Y 0
|
2020-10-31 15:37:38 +01:00
|
|
|
|
2021-01-31 18:41:27 +01:00
|
|
|
#define CAMERA_CENTER_Y_ABS_SUM 50
|
2020-02-28 16:45:28 +01:00
|
|
|
//Actually it's ± MAX_VAL
|
2021-01-31 18:41:27 +01:00
|
|
|
#define MAX_X 50
|
2020-02-28 16:45:28 +01:00
|
|
|
#define MAX_Y (CAMERA_CENTER_Y_ABS_SUM/2)
|
|
|
|
#define DIST_MULT 1.65
|
2020-02-26 18:51:46 +01:00
|
|
|
|
|
|
|
#define Kpx 1
|
|
|
|
#define Kix 0
|
|
|
|
#define Kdx 0
|
|
|
|
#define Kpy 1
|
|
|
|
#define Kiy 0
|
|
|
|
#define Kdy 0
|
2020-02-21 13:37:32 +01:00
|
|
|
|
|
|
|
class PositionSysCamera : public PositionSystem{
|
|
|
|
|
|
|
|
public:
|
|
|
|
PositionSysCamera();
|
2020-12-23 21:16:50 +01:00
|
|
|
void goCenter() override;
|
|
|
|
void centerGoal() override;
|
2020-03-12 12:09:13 +01:00
|
|
|
void setMoveSetpoints(int x, int y);
|
|
|
|
void addMoveOnAxis(int x, int y);
|
2020-02-21 13:37:32 +01:00
|
|
|
void update() override;
|
|
|
|
void test() override;
|
2020-02-26 18:51:46 +01:00
|
|
|
void setCameraPID();
|
|
|
|
void CameraPID();
|
2020-02-27 17:30:10 +01:00
|
|
|
int calcOtherGoalY(int goalY);
|
2020-02-26 18:51:46 +01:00
|
|
|
|
|
|
|
double Inputx, Outputx, Setpointx, Inputy, Outputy, Setpointy;
|
2020-03-12 12:09:13 +01:00
|
|
|
int MAX_DIST, vx, vy, axisx, axisy;
|
|
|
|
bool givenMovement;
|
2020-02-26 18:51:46 +01:00
|
|
|
PID* X;
|
|
|
|
PID* Y;
|
2020-02-21 13:37:32 +01:00
|
|
|
|
|
|
|
};
|