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