blob: 7f2a612c155dce3a7b0751cd7dc6a541b568e95d [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;
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;