Services.proto 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. syntax = "proto3";
  2. package sys.services;
  3. import "AirPlay.proto";
  4. import "Equalizer.proto";
  5. import "Metadata.proto";
  6. import "Sleep.proto";
  7. import "Spotify.proto";
  8. import "Squeezelite.proto";
  9. import "Telnet.proto";
  10. import "nanopb.proto";
  11. import "customoptions.proto";
  12. message bt_sink {
  13. option (nanopb_msgopt).packed_struct = true;
  14. bool enabled = 1 [(cust_field).v_bool = true];
  15. uint32 volume = 2;
  16. string pin= 3 [(nanopb).max_length = 16,(cust_field).v_string = "0000" ];
  17. }
  18. message config {
  19. option (nanopb_msgopt).packed_struct = true;
  20. option (nanopb_msgopt).msgid = 10037;
  21. metadata.config metadata = 1;
  22. sleep.config sleep = 2;
  23. spotify.config cspot = 4;
  24. airplay.config airplay = 5;
  25. repeated squeezelite.profile squeezelite_profiles = 6 [(nanopb).max_count = 5,
  26. (cust_field).v_msg = '[{"name":"i2s","profile":{"output_type":"I2S","log":{"output":"DEBUG","stream":"DEBUG","decode":"DEBUG","slimproto":"DEBUG","ir":"DEBUG"},"buffers":{"stream":500,"output":2000},"max_rate":96000,"enabled":true,"amp_gpio_timeout":30,"wav_aiff_header_parsing":true}},{"name":"spdif","profile":{"output_type":"SPDIF","log":{"output":"DEBUG","stream":"DEBUG","decode":"DEBUG","slimproto":"DEBUG","ir":"DEBUG"},"buffers":{"stream":500,"output":2000},"max_rate":48000,"enabled":true,"amp_gpio_timeout":30,"wav_aiff_header_parsing":true}},{"name":"bluetooth","profile":{"output_type":"BT","log":{"output":"DEBUG","stream":"DEBUG","decode":"DEBUG","slimproto":"DEBUG","ir":"DEBUG"},"buffers":{"stream":500,"output":2000},"max_rate":44100,"enabled":true,"amp_gpio_timeout":30,"wav_aiff_header_parsing":true}}]'] ;
  27. string release_url = 7 [(nanopb).max_length = 256, (cust_field).v_string = "https://api.github.com/repos/sle118/squeezelite-esp32/releases"];
  28. bt_sink bt_sink = 8;
  29. bool statistics = 9 [(cust_field).v_bool = false];
  30. telnet.config telnet = 10;
  31. equalizer.config equalizer = 11;
  32. string current_profile = 12 [(nanopb).type = FT_POINTER, (cust_field).v_string = "i2s"];
  33. // default time zone is Montreal.
  34. // see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
  35. // or for a handy list: https://gist.github.com/alwynallan/24d96091655391107939
  36. string timezone = 13 [(nanopb).type = FT_POINTER, (cust_field).v_string = "EST5EDT,M3.2.0,M11.1.0"];
  37. }