blob: c26de8864469daac4667dbba889470d01db32f63 [file] [log] [blame]
Sabina Davisc6329342019-03-01 20:44:42 -08001package y2019;
2
3message StatusLight {
4 // How bright to make each one. 0 is off, 1 is full on.
5 float red;
6 float green;
7 float blue;
8};
9
10queue StatusLight status_light;
Austin Schuh4e2629d2019-03-28 14:44:37 -070011
12message CameraLog {
13 bool log;
14};
15
16queue CameraLog camera_log;