forked from gronod/squeezelite-esp32
12 lines
217 B
Protocol Buffer
12 lines
217 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package sys.equalizer;
|
|
|
|
import "nanopb.proto";
|
|
|
|
message config {
|
|
option (nanopb_msgopt).packed_struct = true;
|
|
repeated float gains = 1 [(nanopb).max_count = 10];
|
|
float loudness = 2;
|
|
|
|
} |