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