moved protobuf files in

This commit is contained in:
2017-01-31 19:39:16 +01:00
parent 1e5ff3c29d
commit 2d846c167d
4 changed files with 144 additions and 0 deletions

34
client.proto Normal file
View File

@@ -0,0 +1,34 @@
syntax = "proto3";
package ledd;
message Client {
int32 id = 1;
string address = 2;
int32 max_led = 3;
string name = 4;
string version = 5;
int32 resolution = 6;
int32 port = 7;
map<string, string> options = 10;
}
message Clients {
repeated Client clients = 1;
}
message ClientSetPercentageAll {
float percentage = 1;
repeated int32 client_id = 2;
}
message ClientSetLocalDirect {
int32 local_id = 1;
float percentage = 2;
}
message ClientLEDOptions {
map<string, string> options = 1;
}