ARMS  3.1.1
Documentation for ARMS movement library
chassis.h
Go to the documentation of this file.
1 #ifndef _ARMS_CHASSIS_H_
2 #define _ARMS_CHASSIS_H_
3 
4 #include "ARMS/flags.h"
5 #include "ARMS/point.h"
6 #include <memory>
7 #include "../api.h"
8 #include "pros/motors.h"
9 
21 namespace arms::chassis {
22 
33 extern double maxSpeed;
34 extern std::shared_ptr<pros::Motor_Group> leftMotors;
35 extern std::shared_ptr<pros::Motor_Group> rightMotors;
36 
53 void setBrakeMode(pros::motor_brake_mode_e_t b);
54 
70 bool settled();
71 
87 void waitUntilFinished(double exit_error);
88 
130 void move(std::vector<double> target, double max, double exit_error,
131  double lp, double ap, MoveFlags = NONE);
132 
134 void move(std::vector<double> target, double max, double exit_error,
135  MoveFlags = NONE);
136 void move(std::vector<double> target, double max, MoveFlags = NONE);
137 void move(std::vector<double> target, MoveFlags = NONE);
139 
184 void move(double target, double max, double exit_error,
185  double lp, double ap, MoveFlags = NONE);
186 
188 void move(double target, double max, double exit_error,
189  MoveFlags = NONE);
190 void move(double target, double max, MoveFlags = NONE);
191 void move(double target, MoveFlags = NONE);
193 
241 void turn(double target, double max, double exit_error, double ap,
242  MoveFlags = NONE);
243 
245 void turn(double target, double max, double exit_error, MoveFlags = NONE);
246 void turn(double target, double max, MoveFlags = NONE);
247 void turn(double target, MoveFlags = NONE);
249 
290 void turn(Point target, double max, double exit_error, double ap,
291  MoveFlags = NONE);
292 
294 void turn(Point target, double max, double exit_error, MoveFlags = NONE);
295 void turn(Point target, double max, MoveFlags = NONE);
296 void turn(Point target, MoveFlags = NONE);
298 
299 
328 void tank(double left, double right, bool velocity = false);
329 
358 void arcade(double vertical, double horizontal, bool velocity = false);
359 
361 void init(std::initializer_list<int8_t> leftMotors,
362  std::initializer_list<int8_t> rightMotors, pros::motor_gearset_e_t gearset,
363  double slew_step, double linear_exit_error, double angular_exit_error,
364  double settle_thresh_linear, double settle_thresh_angular,
365  int settle_time);
367 } // namespace arms::chassis
368 
369 
370 
371 #endif
void init()
Initialize ARMS using the user defined constants Example 1:
Definition: config.h:566
This namespace contains all of the functions and variables needed to control the chassis.
void arcade(double vertical, double horizontal, bool velocity=false)
move the chassis using arcade drive
void tank(double left, double right, bool velocity=false)
move the chassis using tank drive
std::shared_ptr< pros::Motor_Group > rightMotors
void setBrakeMode(pros::motor_brake_mode_e_t b)
void waitUntilFinished(double exit_error)
void move(std::vector< double > target, double max, double exit_error, double lp, double ap, MoveFlags=NONE)
std::shared_ptr< pros::Motor_Group > leftMotors
void turn(double target, double max, double exit_error, double ap, MoveFlags=NONE)
turn the chassis a target angle
Definition: flags.h:40
Definition: point.h:30