mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-10 13:37:03 +03:00
11 lines
298 B
Protocol Buffer
11 lines
298 B
Protocol Buffer
syntax = "proto3";
|
|
import "customoptions.proto";
|
|
import "nanopb.proto";
|
|
package sys;
|
|
message Spotify {
|
|
option (nanopb_msgopt).msgid = 10038;
|
|
bool enabled = 1;
|
|
uint32 bitrate = 2 [(nanopb).int_size = IS_16];
|
|
bool zeroconf = 3 [(cust_field).v_bool = true] ;
|
|
uint32 volume = 4 ;
|
|
} |