mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-10 13:37:03 +03:00
16 lines
392 B
Protocol Buffer
16 lines
392 B
Protocol Buffer
syntax = "proto3";
|
|
package sys;
|
|
import "Network.proto";
|
|
import "Equalizer.proto";
|
|
import "nanopb.proto";
|
|
|
|
option (nanopb_fileopt).enum_to_string = true;
|
|
|
|
message State {
|
|
WifiSTAEntry connected_sta = 1;
|
|
Server lms = 2;
|
|
string ota_url = 3 [(nanopb).type = FT_POINTER];
|
|
string cspot_credentials = 4 [(nanopb).type = FT_POINTER];
|
|
int32 bt_sink_volume = 5 ;
|
|
Equalizer equalizer = 6;
|
|
} |