mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-09 21:17:18 +03:00
23 lines
582 B
Protocol Buffer
23 lines
582 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package sys.metadata;
|
|
|
|
import "Artwork.proto";
|
|
import "nanopb.proto";
|
|
|
|
message config {
|
|
option (nanopb_msgopt).packed_struct = true;
|
|
option (nanopb_msgopt).msgid = 10036;
|
|
// Optional parameters controlling bluetooth and airplay
|
|
// Display format with optional keywords %artist%, %album%, %title%
|
|
string format = 1 [(nanopb).max_length= 50];
|
|
|
|
// Scrolling speed in ms
|
|
uint32 speed = 2 ;
|
|
|
|
// Pause time between scrolls in ms
|
|
uint32 pause = 3;
|
|
|
|
// Cover art display configuration
|
|
artwork.config artwork = 4;
|
|
} |