removed redundant message; fixed missing vlaue in client proto

This commit is contained in:
2017-12-12 20:45:58 +01:00
parent c0b46db0cf
commit f64cea8403
2 changed files with 4 additions and 9 deletions

View File

@@ -20,11 +20,6 @@ message BackendSetAll {
int32 value = 1;
}
message BackendSetLocalDirect {
int32 channel = 1;
int32 value = 2;
}
message BackendLEDOptions {
map<string, string> options = 1;
}
@@ -37,9 +32,8 @@ message BackendWrapperMessage {
oneof msg {
Backend m_backend = 2;
BackendSetAll m_set_all = 3;
BackendSetLocalDirect m_set_local_direct = 4;
BackendLEDOptions m_options = 5;
BackendSetChannel m_set_channel = 6;
LedD m_ledd = 7;
BackendLEDOptions m_options = 4;
BackendSetChannel m_set_channel = 5;
LedD m_ledd = 6;
}
}