blob: 1420313817815c03a246a06f8359b855ab020676 [file] [log] [blame]
James Kuszmaul78e29ac2020-07-28 21:07:03 -07001namespace frc971.codelab;
2
3table Position {
4 // The limit sensor being set to true indicates that we should stop turning on
5 // the intake motors--in a real robot, we might have an intake that pulls a
6 // ball in, and the ball then hits a limit sensor when it is fully contained.
7 // We would then want to stop running the intake to avoid spinning the intake
8 // against the ball.
9 limit_sensor: bool;
10}
11
12root_type Position;