changed from HCL to RGB

This commit is contained in:
2019-05-03 03:01:24 +02:00
parent b0f65bb09a
commit 9a2fd0ad06
4 changed files with 15 additions and 15 deletions

11
rgb.proto Normal file
View File

@@ -0,0 +1,11 @@
syntax = "proto3";
package ledd;
option optimize_for = SPEED;
message RGB {
double red = 4;
double green = 5;
double blue = 6;
}