blob: 2fbf41b10128fad14695127acd1b710e92261f60 [file] [log] [blame]
Austin Schuh6d1ee0c2015-11-21 14:36:04 -08001package y2015_bot3.autonomous;
Comran Morshed0d6cf9b2015-06-17 19:29:57 +00002
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;
Austin Schuhbd01a582015-09-21 00:05:31 +000012 // Can grabbers fired
13 bool can_grabbers;
Comran Morshed34f891d2015-09-15 22:04:43 +000014};
15queue CanGrabberControl can_grabber_control;