blob: be271224d024f83dbef318308f1c07ea2dfff9a2 [file] [log] [blame]
James Kuszmaul78e29ac2020-07-28 21:07:03 -07001namespace frc971.codelab;
2
3table Output {
4 // This would be set up to drive a hypothetical motor that would
5 // hope to intake something. Voltages on our robots generally range from
6 // -12.0 V to +12.0V. In this case, the intake should be commanded to actually
7 // intake by setting the voltage to 12 V.
Ravago Jonesfb6a7a52020-11-14 13:47:46 -08008 intake_voltage:double (id: 0);
James Kuszmaul78e29ac2020-07-28 21:07:03 -07009}
10
11root_type Output;