blob: abe81e3376c7ffc6a98f603afb57b53d207d7c76 [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
16
17} // constants
18} // bot3
19
20#endif