Fang-Robotics-MCB
Fang Robotics Team Codebase
Loading...
Searching...
No Matches
tardis_config.hpp
Go to the documentation of this file.
1#ifndef FANG_ROBOTICS_MCB_PIERCE_CONFIG_COMMAND_TARDIS_CONFIG_HPP
2#define FANG_ROBOTICS_MCB_PIERCE_CONFIG_COMMAND_TARDIS_CONFIG_HPP
4
5namespace fang::robot
6{
7 static const chassis::AzrielShredder::Config k_razielKalmanShredderConfig
8 {
9 .biteDepth = 0.9,
10 .biteForce = 5,
11 .period = 0.8, //every x seconds
12 .phase = 0,
13 };
14
15 static const chassis::TardisCommand::Config k_tardisConfig
16 {
17 .maxTranslation = {20_mph, 20_mph}, // HACK: Ultra Mk2 motors do not use feedback rpm loops
18 .maxRotation = 350_rpm,
19 .downscaleCoefficient = 5,
20 .razielKalmanShredderConfig = k_razielKalmanShredderConfig
21 };
22}
23
24#endif
Definition base_robot.cpp:4
double biteDepth
Definition azriel_shredder.hpp:23
physics::Velocity2D maxTranslation
Definition tardis_command.hpp:32