|
| constexpr auto | IMU_I2C_SDA = PB_7 |
| |
| constexpr auto | IMU_I2C_SCL = PB_8 |
| |
| constexpr auto | IMU_RESET = PA_8 |
| |
| constexpr int | pitch_zero_offset_ticks = 1500 |
| |
| constexpr float | PITCH_LOWER_BOUND {-32.0} |
| |
| constexpr float | PITCH_UPPER_BOUND {35.0} |
| |
| constexpr float | JOYSTICK_YAW_SENSITIVITY_DPS = 600 |
| |
| constexpr float | JOYSTICK_PITCH_SENSITIVITY_DPS = 300 |
| |
| PID::config | yaw_vel_PID = {350, 0.5, 2.5, 32000, 2000} |
| |
| PID::config | yaw_pos_PID = {0.5, 0, 0, 90, 2} |
| |
| PID::config | pitch_vel_PID = {500, 0.8, 0, 32000, 2000} |
| |
| PID::config | pitch_pos_PID = {1.5, 0.0005, 0.05, 30, 2} |
| |
| PID::config | fl_vel_config = {3, 0, 0} |
| |
| PID::config | fr_vel_config = {3, 0, 0} |
| |
| PID::config | bl_vel_config = {3, 0, 0} |
| |
| PID::config | br_vel_config = {3, 0, 0} |
| |
| PID::config | flywheelL_PID = {7.1849, 0.000042634, 0} |
| |
| PID::config | flywheelR_PID = {7.1849, 0.000042634, 0} |
| |
| PID::config | indexer_PID_vel = {2.7, 0.001, 0} |
| |
| PID::config | indexer_PID_pos = {0.1, 0, 0.001} |
| |
| ChassisSpeeds | des_chassis_state |
| |
| TurretSubsystem::TurretInfo | des_turret_state |
| |
| ShootState | des_shoot_state |
| |
| int | remoteTimer = 0 |
| |
| float | pitch_desired_angle = 0.0 |
| |
| float | yaw_desired_angle = 0.0 |
| |
| DigitalOut | led0 = PC_1 |
| |