Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

commit bigsmoothknob #21265

Merged
merged 10 commits into from
Jun 20, 2023
19 changes: 19 additions & 0 deletions keyboards/nacly/bigsmoothknob/config.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/* Copyright 2023 nacly (https://github.com/Na-Cly)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#pragma once
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_TIMEOUT 500U
44 changes: 44 additions & 0 deletions keyboards/nacly/bigsmoothknob/info.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"keyboard_name": "bigsmoothknob",
"name":"bigsmoothknob",
"url": "https://nacly.net",
"maintainer": "na-cly",
"manufacturer": "na-cly",
"usb": {
"pid": "0x6273",
"vid": "0x6B70",
"device_version": "1.0.0"
},
"encoder": {
"rotary": [
{ "pin_a": "GP26", "pin_b": "GP27" }
]
},
"matrix_pins": {
Na-Cly marked this conversation as resolved.
Show resolved Hide resolved
"cols":["GP18","GP15","GP14","GP13"],
"rows":["GP12","GP11"]
},
"diode_direction": "COL2ROW",
"processor": "RP2040",
"bootloader": "rp2040",
"features": {
"bootmagic": true,
"extrakey": true,
"mousekey": true,
"encoder": true
},
"layouts": {
Na-Cly marked this conversation as resolved.
Show resolved Hide resolved
"LAYOUT": {
"layout": [
{"label": "1", "x": 0, "y": 0, "matrix": [0, 0]},
{"label": "2", "x": 1, "y": 0, "matrix": [0, 1]},
{"label": "3", "x": 2, "y": 0, "matrix": [0, 2]},
{"label": "4", "x": 3, "y": 0, "matrix": [0, 3]},
{"label": "5", "x": 0, "y": 1, "matrix": [1, 0]},
{"label": "6", "x": 1, "y": 1, "matrix": [1, 1]},
{"label": "7", "x": 2, "y": 1, "matrix": [1, 2]},
{"label": "8", "x": 3, "y": 1, "matrix": [1, 3]}
]
}
}
}
30 changes: 30 additions & 0 deletions keyboards/nacly/bigsmoothknob/keymaps/default/keymap.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
/* Copyright 2023 nacly (https://github.com/Na-Cly)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#include QMK_KEYBOARD_H

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[0] = LAYOUT(
KC_1, KC_2, KC_3, KC_4,
KC_5, KC_6, KC_7, KC_8
)
};

#if defined(ENCODER_MAP_ENABLE)
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][NUM_DIRECTIONS] = {
[0] = { ENCODER_CCW_CW(KC_VOLD, KC_VOLU) }
};
#endif
1 change: 1 addition & 0 deletions keyboards/nacly/bigsmoothknob/keymaps/default/rules.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ENCODER_MAP_ENABLE = yes
30 changes: 30 additions & 0 deletions keyboards/nacly/bigsmoothknob/keymaps/via/keymap.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
/* Copyright 2023 nacly (https://github.com/Na-Cly)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#include QMK_KEYBOARD_H

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[0] = LAYOUT(
KC_1, KC_2, KC_3, KC_4,
KC_5, KC_6, KC_7, KC_8
)
};

#if defined(ENCODER_MAP_ENABLE)
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][NUM_DIRECTIONS] = {
[0] = { ENCODER_CCW_CW(KC_VOLD, KC_VOLU) }
};
#endif
3 changes: 3 additions & 0 deletions keyboards/nacly/bigsmoothknob/keymaps/via/rules.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
VIA_ENABLE = yes
LTO_ENABLE = yes
ENCODER_MAP_ENABLE = yes
24 changes: 24 additions & 0 deletions keyboards/nacly/bigsmoothknob/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Big Smooth Knob
8 key macro pad with a gigantic knob.


* Keyboard Maintainer: [na-cly](https://github.com/na-cly)
* Hardware Supported: Big Smooth Knob

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

```
qmk compile -kb nacly/bigsmoothknob -km default
```

Flashing example for this keyboard:
```
drag the uf2 to the bsk after connecting it in bootloader mode
```
Na-Cly marked this conversation as resolved.
Show resolved Hide resolved
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:

* **boot button**: Hold the BOOT button on the back of the PCB while plug in usb cable
1 change: 1 addition & 0 deletions keyboards/nacly/bigsmoothknob/rules.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# This file intentionally left blank