mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-10 05:27:01 +03:00
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;
|
|
|
|
} |