Fang-Robotics-MCB
Fang Robotics Team Codebase
Loading...
Searching...
No Matches
turret_input_config.hpp
Go to the documentation of this file.
1#ifndef FANG_ROBOTICS_MCB_TURRET_INPUT_CONFIG_HPP
2#define FANG_ROBOTICS_MCB_TURRET_INPUT_CONFIG_HPP
4namespace fang::robot
5{
8
9 static const turret::TurretInputHandler::RemoteConfig k_turretInputRemoteConfig
10 {
11 Channel::RIGHT_VERTICAL,
12 Channel::RIGHT_HORIZONTAL,
13 Channel::WHEEL
14 };
15
16 static const turret::TurretInputHandler::MouseConfig k_turretInputMouseConfig
17 {
19 .yawPercentagePerPx = 0.15
20 };
21 static const turret::TurretInputHandler::Config kTurretInputConfig
22 {
23 k_turretInputRemoteConfig,
24 k_turretInputMouseConfig
25 };
26
27}
28#endif
Definition remote.hpp:51
Channel
Definition remote.hpp:61
Definition base_robot.cpp:4
tap::communication::serial::Remote Remote
Definition chassis_input_config.hpp:7
Remote::Channel Channel
Definition chassis_input_config.hpp:8
double pitchPercentagePerPx
Definition turret_input_handler.hpp:22