ARMS  3.1.1
Documentation for ARMS movement library
odom.h
1 #ifndef _ARMS_ODOM_H_
2 #define _ARMS_ODOM_H_
3 
4 #include "ARMS/point.h"
5 #include "pros/imu.hpp"
6 #include <memory>
7 
17 namespace arms::odom {
18 
27 typedef enum EncoderType { ENCODER_ADI, ENCODER_ROTATION } EncoderType_e_t;
28 
29 // Odom Configuration
53 typedef struct config_data_s {
54  int expanderPort = 0;
56  int leftEncoderPort = 0;
58  int imuPort = 0;
59  EncoderType_e_t encoderType;
61 
62 // sensors
67 extern std::shared_ptr<pros::Imu> imu;
68 
74 double getLeftEncoder();
75 
81 double getRightEncoder();
82 
89 
96 
104 double getHeading(bool radians = false);
105 
119 void reset(Point point = {0, 0});
120 
136 void reset(Point point, double angle);
137 
151 double getAngleError(Point point);
152 
166 double getDistanceError(Point point);
167 
169 void init(bool debug, EncoderType_e_t encoderType, std::array<int, 3> encoderPorts,
170  int expanderPort, int imuPort, double track_width,
171  double middle_distance, double tpi, double middle_tpi);
173 
174 } // namespace arms::odom
175 
176 #endif
void init()
Initialize ARMS using the user defined constants Example 1:
Definition: config.h:566
This namespace deals with the odometry system.
double getRightEncoder()
void reset(Point point={0, 0})
double getAngleError(Point point)
double getHeading(bool radians=false)
std::shared_ptr< pros::Imu > imu
Point getPosition()
double getDistanceError(Point point)
double getLeftEncoder()
double getMiddleEncoder()
Definition: odom.h:53
int middleEncoderPort
Definition: odom.h:57
int rightEncoderPort
Definition: odom.h:55
int expanderPort
Definition: odom.h:54
EncoderType_e_t encoderType
Definition: odom.h:59
int imuPort
Definition: odom.h:58
int leftEncoderPort
Definition: odom.h:56
Definition: point.h:30