config.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. {
  2. "gpios": {
  3. "redLED": {
  4. "gpio": {
  5. "pin": 19,
  6. "level": "LOW"
  7. },
  8. "brightness": 50,
  9. "led_type": "GPIO"
  10. },
  11. "greenLED": {
  12. "gpio": {
  13. "pin": 22,
  14. "level": "LOW"
  15. },
  16. "brightness": 50,
  17. "led_type": "GPIO"
  18. },
  19. "amp": {
  20. "pin": 21,
  21. "level": "HIGH"
  22. },
  23. "jack": {
  24. "pin": 39,
  25. "level": "LOW"
  26. }
  27. },
  28. "dev": {
  29. "dac": {
  30. "bck": 27,
  31. "ws": 26,
  32. "dout": 25,
  33. "din": 35,
  34. "model": "AC101",
  35. "i2c": {
  36. "port": "PORT0",
  37. "speed": 400000,
  38. "sda": 33,
  39. "scl": 32
  40. },
  41. "jack_mutes_amp": false
  42. },
  43. "root_button_profile": "default",
  44. "buttons_profiles": [
  45. {
  46. "profile_name": "default",
  47. "buttons": [
  48. {
  49. "gpio": {
  50. "pin": 5
  51. },
  52. "normal": {
  53. "pressed": {
  54. "type": "A_TOGGLE"
  55. }
  56. }
  57. },
  58. {
  59. "gpio": {
  60. "pin": 18
  61. },
  62. "pull": true,
  63. "shifter": 5,
  64. "normal": {
  65. "pressed": {
  66. "type": "A_VOLUP"
  67. }
  68. },
  69. "shifted": {
  70. "pressed": {
  71. "type": "A_NEXT"
  72. }
  73. }
  74. },
  75. {
  76. "gpio": {
  77. "pin": 23
  78. },
  79. "pull": true,
  80. "shifter": 5,
  81. "normal": {
  82. "pressed": {
  83. "type": "A_VOLDOWN"
  84. }
  85. },
  86. "shifted": {
  87. "pressed": {
  88. "type": "A_PREV"
  89. }
  90. }
  91. }
  92. ]
  93. }
  94. ]
  95. }
  96. }