keyboard.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "keyboard_name": "S245 Streamdeck",
  3. "manufacturer": "sector245",
  4. "maintainer": "sector245",
  5. "processor": "RP2040",
  6. "bootloader": "rp2040",
  7. "debounce": 20,
  8. "usb": {
  9. "vid": "0x5345",
  10. "pid": "0x0001",
  11. "device_version": "1.0.0"
  12. },
  13. "features": {
  14. "bootmagic": true,
  15. "extrakey": true,
  16. "encoder": true
  17. },
  18. "matrix_pins": {
  19. "direct": [
  20. ["GP2", "GP3", "GP13"],
  21. ["GP4", "GP5", "GP6"],
  22. ["GP7", "GP8", "GP9"]
  23. ]
  24. },
  25. "encoder": {
  26. "rotary": [
  27. {
  28. "pin_a": "GP10",
  29. "pin_b": "GP11",
  30. "resolution": 2
  31. }
  32. ]
  33. },
  34. "community_layouts": ["ortho_3x3"],
  35. "layouts": {
  36. "LAYOUT_ortho_3x3": {
  37. "layout": [
  38. {"matrix": [0, 0], "x": 0, "y": 0},
  39. {"matrix": [0, 1], "x": 1, "y": 0},
  40. {"matrix": [0, 2], "x": 2, "y": 0, "encoder": 0},
  41. {"matrix": [1, 0], "x": 0, "y": 1},
  42. {"matrix": [1, 1], "x": 1, "y": 1},
  43. {"matrix": [1, 2], "x": 2, "y": 1},
  44. {"matrix": [2, 0], "x": 0, "y": 2},
  45. {"matrix": [2, 1], "x": 1, "y": 2},
  46. {"matrix": [2, 2], "x": 2, "y": 2}
  47. ]
  48. }
  49. }
  50. }