blob: cbc65b3eec3785f3511d2aecd672a5817ce802fb [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.
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
Alex Perrycb7da4b2019-08-28 19:35:56 -070010root_type StatusLight;