blob: d5295001eb8f823818ffefcf182ce0756c5c8c10 [file] [log] [blame]
Comran Morshed0d6cf9b2015-06-17 19:29:57 +00001package bot3.autonomous;
2
3message AutoControl {
4 // True if auto mode should be running, false otherwise.
5 bool run_auto;
6};
Comran Morshed0d6cf9b2015-06-17 19:29:57 +00007queue AutoControl autonomous;
Comran Morshed34f891d2015-09-15 22:04:43 +00008
9message CanGrabberControl {
10 // Voltage to send out to can grabbers.
11 double can_grabber_voltage;
12};
13queue CanGrabberControl can_grabber_control;