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
60,484 changes: 60,484 additions & 0 deletions hackpads/dldpad/CAD/dldpad.step

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions hackpads/dldpad/Firmware/dldpad/config.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
// Copyright 2023 QMK
// SPDX-License-Identifier: GPL-2.0-or-later


#define ENCODER_A_PINS { GP0 }
#define ENCODER_B_PINS { GP1 }

#define I2C_DRIVER I2CD1
#define I2C1_SDA_PIN GP6
#define I2C1_SCL_PIN GP7
41 changes: 41 additions & 0 deletions hackpads/dldpad/Firmware/dldpad/keyboard.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"manufacturer": "Daniel Davidson",
"keyboard_name": "dldpad",
"maintainer": "danieliscrazy",
"bootloader": "rp2040",
"diode_direction": "COL2ROW",
"features": {
"bootmagic": true,
"command": false,
"console": false,
"extrakey": true,
"mousekey": true,
"nkro": true
},
"matrix_pins": {
"direct": [
["GP3", "GP4", "GP2", "GP26"],
["GP27", "GP28", "GP29", "NO_PIN"]
]
},
"processor": "RP2040",
"url": "",
"usb": {
"device_version": "1.0.0",
"pid": "0x0010",
"vid": "0x0F63"
},
"layouts": {
"LAYOUT": {
"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}
]
}
}
}
45 changes: 45 additions & 0 deletions hackpads/dldpad/Firmware/dldpad/keymaps/default/keymap.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
// Copyright 2023 QMK
// SPDX-License-Identifier: GPL-2.0-or-later

#include QMK_KEYBOARD_H

enum layer_names {
_LAYERER,
};

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
// i don't have a diagram here sorry
[_LAYERER] = LAYOUT(
KC_F13, KC_F14, KC_F15, KC_MUTE,
KC_F16, KC_F17, KC_F18
)
};

const uint16_t PROGMEM encoder_map[][1][2] = {
[0] = { ENCODER_CCW_CW(KC_VOLU, KC_VOLD) },
};


#ifdef OLED_ENABLE
bool oled_task_user(void) {
// Host Keyboard Layer Status
oled_write_P(PSTR("Layer: "), false);

switch (get_highest_layer(layer_state)) {
case _LAYERER:
oled_write_P(PSTR("ducks are cool\n"), false);
break;
default:
// Or use the write_ln shortcut over adding '\n' to the end of your string
oled_write_ln_P(PSTR("where are the ducks"), false);
}

// Host Keyboard LED Status
led_t led_state = host_keyboard_led_state();
oled_write_P(led_state.num_lock ? PSTR("NUM ") : PSTR(" "), false);
oled_write_P(led_state.caps_lock ? PSTR("CAP ") : PSTR(" "), false);
oled_write_P(led_state.scroll_lock ? PSTR("SCR ") : PSTR(" "), false);

return false;
}
#endif
Empty file.
27 changes: 27 additions & 0 deletions hackpads/dldpad/Firmware/dldpad/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# dldpad

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

*A short description of the keyboard/project*

* Keyboard Maintainer: [Daniel Davidson](https://github.com/danieliscrazy)
* 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 dldpad:default

Flashing example for this keyboard:

make dldpad: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/dldpad/Firmware/dldpad/rules.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
OLED_ENABLE = yes
OLED_TRANSPORT = i2c
OLED_DRIVER = ssd1306

ENCODER_ENABLE = yes
ENCODER_MAP_ENABLE = yes
# required for rp2040
LTO_ENABLE = yes
1 change: 1 addition & 0 deletions hackpads/dldpad/PCB/dldpad_pcb.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions hackpads/dldpad/PCB/dldpad_schematic.json

Large diffs are not rendered by default.

Loading