Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions hackpads/padimo_hackpad/BOM.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# BOM:
4x Cherry MX switches
1x EC11 Encoder
1x PCB - black with white drawings if possible
4x Through-hole 1N4148 Diodes
1x 0.96" OLED
3D printed case
468,768 changes: 468,768 additions & 0 deletions hackpads/padimo_hackpad/CAD/hackpad_case.step

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions hackpads/padimo_hackpad/firmware/hackpad_controller/config.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
// Copyright 2024 QMK
// SPDX-License-Identifier: GPL-2.0-or-later

#define ENCODER_A_PINS {GP4}
#define ENCODER_B_PINS {GP3}
#define WS2812_DI_PIN GP0
#define RGBLIGHT_LED_COUNT 2
36 changes: 36 additions & 0 deletions hackpads/padimo_hackpad/firmware/hackpad_controller/keyboard.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"manufacturer": "Padimo",
"keyboard_name": "hackpad_controller",
"maintainer": "Omegon0",
"bootloader": "rp2040",
"diode_direction": "COL2ROW",
"features": {
"bootmagic": true,
"command": false,
"console": false,
"extrakey": true,
"mousekey": true,
"nkro": true
},
"matrix_pins": {
"cols": ["GP26", "GP27"],
"rows": ["GP28", "GP29"]
},
"processor": "RP2040",
"url": "",
"usb": {
"device_version": "1.0.0",
"pid": "0x0000",
"vid": "0xFEED"
},
"layouts": {
"LAYOUT": {
"layout": [
{"matrix": [0, 0], "x": 0, "y": 0},
{"matrix": [0, 1], "x": 1, "y": 0},
{"matrix": [1, 0], "x": 0, "y": 1},
{"matrix": [1, 1], "x": 1, "y": 1}
]
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
// Copyright 2023 QMK
// SPDX-License-Identifier: GPL-2.0-or-later

#include QMK_KEYBOARD_H

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
/*
* ┌───┬───┬───┬───┐
* │ 7 │ 8 │ 9 │ / │
* ├───┼───┼───┼───┤
* │ 4 │ 5 │ 6 │ * │
* ├───┼───┼───┼───┤
* │ 1 │ 2 │ 3 │ - │
* ├───┼───┼───┼───┤
* │ 0 │ . │Ent│ + │
* └───┴───┴───┴───┘
*/
[0] = LAYOUT(
KC_P1, KC_P2,
KC_P3, KC_P4
)
};

#if defined(ENCODER_MAP_ENABLE)
const uint16_t PROGMEM encoder_map[][1][2] = {
[0] = { ENCODER_CCW_CW(KC_VOLU, KC_VOLD) }
};
#endif
27 changes: 27 additions & 0 deletions hackpads/padimo_hackpad/firmware/hackpad_controller/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# hackpad_controller

![hackpad_controller](imgur.com image replace me!)

*A short description of the keyboard/project*

* Keyboard Maintainer: [Padimo](https://github.com/Omegon0)
* Hardware Supported: *The PCBs, controllers supported*
* Hardware Availability: *Links to where you can find this hardware*

Make example for this keyboard (after setting up your build environment):

make hackpad_controller:default

Flashing example for this keyboard:

make hackpad_controller:default:flash

See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).

## Bootloader

Enter the bootloader in 3 ways:

* **Bootmagic reset**: Hold down the key at (0,0) in the matrix (usually the top left key or Escape) and plug in the keyboard
* **Physical reset button**: Briefly press the button on the back of the PCB - some may have pads you must short instead
* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available
8 changes: 8 additions & 0 deletions hackpads/padimo_hackpad/firmware/hackpad_controller/rules.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
RGBLIGHT_ENABLE = yes
WS2812_DRIVER = vendor

ENCODER_ENABLE = yes

LTO_ENABLE = yes

MIDI_ENABLE = yes
Loading