mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-10 21:47:04 +03:00
10 lines
159 B
Protocol Buffer
10 lines
159 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package sys;
|
|
|
|
import "nanopb.proto";
|
|
|
|
message Equalizer {
|
|
repeated float gains = 1 [(nanopb).max_count = 10];
|
|
float loudness = 2;
|
|
} |