Sabina Davis | c632934 | 2019-03-01 20:44:42 -0800 | [diff] [blame] | 1 | package y2019; |
2 | |||||
3 | message 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 | |||||
10 | queue StatusLight status_light; | ||||
Austin Schuh | 4e2629d | 2019-03-28 14:44:37 -0700 | [diff] [blame^] | 11 | |
12 | message CameraLog { | ||||
13 | bool log; | ||||
14 | }; | ||||
15 | |||||
16 | queue CameraLog camera_log; |