From bb16464756d0abb4c147ef8f17eac8064342c2c9 Mon Sep 17 00:00:00 2001 From: Giovanni Harting <539@idlegandalf.com> Date: Sun, 5 May 2019 21:02:19 +0200 Subject: [PATCH] added correction fields --- backend.proto | 4 +++- client.proto | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/backend.proto b/backend.proto index a54a947..93fceab 100644 --- a/backend.proto +++ b/backend.proto @@ -27,7 +27,9 @@ message BackendLEDOptions { } message BackendSetChannel { - map new_channel_values = 2; + map values = 1; + map correction = 2; + } message BackendWrapperMessage { diff --git a/client.proto b/client.proto index 8097079..95d8f9f 100644 --- a/client.proto +++ b/client.proto @@ -17,6 +17,7 @@ message AddLED { string name = 1; string backend = 2; repeated int32 channel = 3; + repeated float correction = 4; } message RemoveLED {