blob: 118a3dc1824bc1591cf786ab8f12c941ab6b67f1 [file] [log] [blame]
Alex Perrycb7da4b2019-08-28 19:35:56 -07001namespace y2018;
2
3table StatusLight {
4 // How bright to make each one. 0 is off, 1 is full on.
Austin Schuhd7851b02020-11-14 13:46:27 -08005 red:float (id: 0);
6 green:float (id: 1);
7 blue:float (id: 2);
Alex Perrycb7da4b2019-08-28 19:35:56 -07008}
9
10root_type StatusLight;