blob: 633b03000180e48b647154c007e51b47670eb7de [file] [log] [blame]
Alex Perrycb7da4b2019-08-28 19:35:56 -07001namespace y2019;
2
3table StatusLight {
4 // How bright to make each one. 0 is off, 1 is full on.
5 red:float;
6 green:float;
7 blue:float;
8}
9
10table CameraLog {
11 log:bool;
12}
13
14root_type CameraLog;
15root_type StatusLight;