ARMS  3.1.1
Documentation for ARMS movement library
All Classes Namespaces Files Functions Variables Macros Pages
config.h
Go to the documentation of this file.
1 #ifndef _ARMS_CONFIG_H_
2 #define _ARMS_CONFIG_H_
3 
5 #include "ARMS/lib.h"
7 
13 namespace arms {
23 // Debug
44 #define ODOM_DEBUG 0
45 
46 // Negative numbers mean reversed motor
66 #define LEFT_MOTORS 0
67 
88 #define RIGHT_MOTORS 0
89 
103 #define GEARSET pros::E_MOTOR_GEAR_200 // RPM of chassis motors
104 
118 #define TPI 0 // Encoder ticks per inch of forward robot movement
119 
133 #define MIDDLE_TPI 0 // Ticks per inch for the middle wheel
134 
135 // Tracking wheel distances
149 #define TRACK_WIDTH 0 // The distance between left and right wheels (or tracker wheels)
150 
164 #define MIDDLE_DISTANCE 0 // Distance from middle wheel to the robot turning center
165 
166 // Sensors
185 #define IMU_PORT 0 // Port 0 for disabled
186 
214 #define ENCODER_PORTS 0, 0, 0 // Port 0 for disabled
215 
235 #define EXPANDER_PORT 0 // Port 0 for disabled
236 
256 #define ENCODER_TYPE arms::odom::ENCODER_ADI // The type of encoders
257 // Movement tuning
272 #define SLEW_STEP 0 // Encoder ticks to move at each step
273 
288 #define LINEAR_EXIT_ERROR 0 // Error to use when exiting linear movement
289 
304 #define ANGULAR_EXIT_ERROR 0 // default exit distance for angular movements
305 
321 #define SETTLE_THRESH_LINEAR 0 // amount of linear movement for settling
322 
338 #define SETTLE_THRESH_ANGULAR 0 // amount of angular movement for settling
339 
356 #define SETTLE_TIME 0 // amount of time to count as settled
357 
372 #define LINEAR_KP 0
373 
388 #define LINEAR_KI 0
389 
404 #define LINEAR_KD 0
405 
420 #define TRACKING_KP 0 // point tracking turning strength
421 
436 #define ANGULAR_KP 0
437 
452 #define ANGULAR_KI 0
453 
468 #define ANGULAR_KD 0
469 
485 #define LEAD_PCT 0 // Go-to-pose lead distance ratio (0-1)
486 
501 #define MIN_ERROR 0
502 
503 // Auton selector configuration constants
520 #define AUTONS 0 // Names of autonomous routines, up to 10
521 
536 #define HUE 0 // Color of theme from 0-359(H part of HSV)
537 
552 #define DEFAULT 0 // Default auton selected
553 
554 // Initializer
566 inline void init() {
567 
570 
573  MIDDLE_TPI);
574 
576 
577  const char* b[] = {AUTONS, ""};
578  selector::init(HUE, DEFAULT, b);
579 
580 }
581 
582 } // namespace arms
583 
584 #endif
#define SETTLE_THRESH_ANGULAR
Angular settle threshold.
Definition: config.h:338
#define MIDDLE_TPI
Middle Ticks Per Inch.
Definition: config.h:133
#define LEAD_PCT
Lead Percent.
Definition: config.h:485
#define ANGULAR_KP
Angular kP.
Definition: config.h:436
#define ANGULAR_EXIT_ERROR
Angular Exit Error.
Definition: config.h:304
#define LEFT_MOTORS
Left chassis motors.
Definition: config.h:66
#define ODOM_DEBUG
Odom debug mode.
Definition: config.h:44
#define TRACKING_KP
Tracking kP.
Definition: config.h:420
#define DEFAULT
Autonomous Selctor Default Routine.
Definition: config.h:552
#define IMU_PORT
IMU Port.
Definition: config.h:185
#define SLEW_STEP
Slew Step.
Definition: config.h:272
#define LINEAR_KI
Linear kI.
Definition: config.h:388
#define SETTLE_THRESH_LINEAR
Linear Settle Threshold.
Definition: config.h:321
#define LINEAR_KP
Linear kP.
Definition: config.h:372
#define SETTLE_TIME
Settle Time.
Definition: config.h:356
#define HUE
Autonomous Selctor Hue.
Definition: config.h:536
#define ENCODER_TYPE
Encoder Type.
Definition: config.h:256
#define MIN_ERROR
Minimum Error.
Definition: config.h:501
#define TPI
Ticks per Inch.
Definition: config.h:118
#define ENCODER_PORTS
Encoder Ports.
Definition: config.h:214
#define TRACK_WIDTH
Track Width.
Definition: config.h:149
#define AUTONS
Auton Selector Routines.
Definition: config.h:520
#define EXPANDER_PORT
Encoder ADI Expander Port.
Definition: config.h:235
#define ANGULAR_KD
Angular kD.
Definition: config.h:468
#define LINEAR_KD
Linear kD.
Definition: config.h:404
#define ANGULAR_KI
Angular kI.
Definition: config.h:452
#define GEARSET
Chassis gearset.
Definition: config.h:103
void init()
Initialize ARMS using the user defined constants Example 1:
Definition: config.h:566
#define LINEAR_EXIT_ERROR
Linear Exit Error.
Definition: config.h:288
#define MIDDLE_DISTANCE
Middle Distance.
Definition: config.h:164
#define RIGHT_MOTORS
Right chassis motors.
Definition: config.h:88