Skip to content
Open
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
Binary file not shown.
Binary file not shown.
7 changes: 7 additions & 0 deletions hackpads/ayos-permanently-untitled-hackpad/Firmware/config.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/* Copyright 2025 Ayo Reis
* SPDX-License-Identifier: GPL-3.0-or-later
*/

#pragma once
#define ENCODER_RESOLUTION 10
#define BOOTLOADER rp2040
48 changes: 48 additions & 0 deletions hackpads/ayos-permanently-untitled-hackpad/Firmware/keyboard.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{
"manufacturer": "Ayo Reis",
"keyboard_name": "ayos-permanently-untitled-hackpad",
"maintainer": "ayoreis",
"bootloader": "rp2040",
"diode_direction": "COL2ROW",
"features": {
"bootmagic": true,
"command": false,
"console": false,
"extrakey": true,
"mousekey": true,
"nkro": true
},
"matrix_pins": {
"cols": ["GP26", "GP27", "GP28", "GP29"],
"rows": ["GP6", "GP7", "GP0", "GP3"]
},
"processor": "RP2040",
"url": "",
"usb": {
"device_version": "1.0.0",
"pid": "0x0000",
"vid": "0xFEED"
},
"layouts": {
"LAYOUT_ortho_4x4": {
"layout": [
{ "matrix": [0, 0], "x": 0, "y": 0 },
{ "matrix": [0, 1], "x": 1, "y": 0 },
{ "matrix": [0, 2], "x": 2, "y": 0 },
{ "matrix": [0, 3], "x": 3, "y": 0 },
{ "matrix": [1, 0], "x": 0, "y": 1 },
{ "matrix": [1, 1], "x": 1, "y": 1 },
{ "matrix": [1, 2], "x": 2, "y": 1 },
{ "matrix": [1, 3], "x": 3, "y": 1 },
{ "matrix": [2, 0], "x": 0, "y": 2 },
{ "matrix": [2, 1], "x": 1, "y": 2 },
{ "matrix": [2, 2], "x": 2, "y": 2 },
{ "matrix": [2, 3], "x": 3, "y": 2 },
{ "matrix": [3, 0], "x": 0, "y": 3 },
{ "matrix": [3, 1], "x": 1, "y": 3 },
{ "matrix": [3, 2], "x": 2, "y": 3 },
{ "matrix": [3, 3], "x": 3, "y": 3 }
]
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// Copyright 2023 QMK
// SPDX-License-Identifier: GPL-2.0-or-later

#include QMK_KEYBOARD_H

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
/*
* ┌───┬───┬───┬───┐
* │ 1 │ 2 │ 3 │ENC│
* ├───┼───┼───┼───┤
* │ 4 │ 5 │ 6 │ 7 │
* ├───┼───┼───┼───┤
* │ 8 │ 9 │ 10│ 11│
* ├───┼───┼───┼───┤
* │ 12│ 13│ 14│ 15│
* └───┴───┴───┴───┘
*/
[0] = LAYOUT_ortho_4x4(
KC_1, KC_2, KC_3, KC_MUTE,
KC_4, KC_5, KC_6, KC_7,
KC_8, KC_9, KC_A, KC_B,
KC_C, KC_D, KC_E, KC_F
)
};
2 changes: 2 additions & 0 deletions hackpads/ayos-permanently-untitled-hackpad/Firmware/rules.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
BOOTLOADER = rp2040
LTO_ENABLE = yes
Loading