Buttons.proto 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. syntax = "proto3";
  2. package sys.btns;
  3. import "nanopb.proto";
  4. import "GPIO.proto";
  5. import "customoptions.proto";
  6. option (nanopb_fileopt).enum_to_string = true;
  7. enum actions {
  8. A_NONE = 0;
  9. A_POWER = 1;
  10. A_VOLUP = 2;
  11. A_VOLDOWN = 3;
  12. A_TOGGLE = 4;
  13. A_PLAY = 5;
  14. A_PAUSE = 6;
  15. A_STOP = 7;
  16. A_REW = 8;
  17. A_FWD = 9;
  18. A_PREV = 10;
  19. A_NEXT = 11;
  20. B_UP = 12;
  21. B_DOWN = 13;
  22. B_LEFT = 14;
  23. B_RIGHT = 15;
  24. B_PS1 = 16;
  25. B_PS2 = 17;
  26. B_PS3 = 18;
  27. B_PS4 = 19;
  28. B_PS5 = 20;
  29. B_PS6 = 21;
  30. B_PS7 = 22;
  31. B_PS8 = 23;
  32. B_PS9 = 24;
  33. B_PS10 = 25;
  34. KNOB_LEFT = 26;
  35. KNOB_RIGHT = 27;
  36. KNOB_PUSH = 28;
  37. A_SLEEP = 29;
  38. REMAP=30;
  39. MAX=31;
  40. }
  41. message action {
  42. option (nanopb_msgopt).packed_struct = true;
  43. actions type = 1;
  44. string profile_name = 2 [(nanopb).type = FT_POINTER];
  45. }
  46. message press {
  47. option (nanopb_msgopt).packed_struct = true;
  48. option (nanopb_msgopt).msgid = 10004;
  49. action pressed = 1;
  50. action released = 2;
  51. }
  52. message btn {
  53. option (nanopb_msgopt).packed_struct = true;
  54. option (nanopb_msgopt).msgid = 10005;
  55. gpio.config gpio = 1 [(cust_field).v_msg='{"pin":-1,"level":"LOW"}'];
  56. bool pull = 2;
  57. int32 debounce = 3;
  58. int32 shifter = 4 [(cust_field).v_int32=-1];
  59. int32 longduration = 5;
  60. press normal = 6;
  61. press longpress = 7;
  62. press shifted = 8;
  63. press longshifted = 9;
  64. }
  65. message profile {
  66. option (nanopb_msgopt).packed_struct = true;
  67. string profile_name = 1 [(nanopb).max_length= 128];
  68. repeated btn buttons = 2 [(nanopb).type = FT_POINTER];
  69. }
  70. message knob_only {
  71. option (nanopb_msgopt).packed_struct = true;
  72. option (nanopb_msgopt).msgid = 10006;
  73. // This mode attempts to offer a single knob full navigation which is a bit contorded due to LMS UI's
  74. // principles. Left, Right and Press obey to LMS's navigation rules and especially Press always goes to
  75. // lower submenu item, even when navigating in the Music Library. That causes a challenge as there is no
  76. // 'Play', 'Back' or 'Pause' button. Workaround are as of below:
  77. // - longpress is 'Play'
  78. // - double press is 'Back' (Left in LMS's terminology).
  79. // - a quick left-right movement on the encoder is 'Pause'
  80. //
  81. // The speed of double click (or left-right) can be set using the optional parameter of 'knobonly'.
  82. // This is not a perfect solution, and other ideas are welcome. Be aware that the longer you set double
  83. // click speed, the less responsive the interface will be. The reason is that I need to wait for that
  84. // delay before deciding if it's a single or double click. It can also make menu navigation "hesitations"
  85. // being easily interpreted as 'Pause'
  86. bool enable = 1; // Enable/disable
  87. int32 delay_ms = 2; // optionally set the delay
  88. }
  89. message rotary {
  90. option (nanopb_msgopt).packed_struct = true;
  91. option (nanopb_msgopt).msgid = 10007;
  92. int32 A = 1 [(cust_field).v_int32=-1];
  93. int32 B = 2 [(cust_field).v_int32=-1];
  94. int32 SW = 3 [(cust_field).v_int32=-1];
  95. knob_only knobonly = 4;
  96. bool volume = 5;
  97. bool longpress = 6;
  98. }