blob: a4bdeb8ce75a4aa180efb570c069cb88f537c267 [file] [log] [blame]
Comran Morshede9b12922015-11-04 19:46:48 +00001#ifndef BOT3_SHIFTER_HALL_EFFECT_H_
2#define BOT3_SHIFTER_HALL_EFFECT_H_
3
4namespace bot3 {
5namespace constants {
6
7// Contains the voltages for an analog hall effect sensor on a shifter.
8struct ShifterHallEffect {
9 // The numbers to use for scaling raw voltages to 0-1.
10 double high, low;
11
12 // The numbers for when the dog is clear of each gear.
13 double clear_high, clear_low;
14};
15
Philipp Schrader790cb542023-07-05 21:06:52 -070016} // namespace constants
17} // namespace bot3
Comran Morshede9b12922015-11-04 19:46:48 +000018
19#endif