Skip to content

Commit

Permalink
[Keyboard] Add bigsmoothknob (qmk#21265)
Browse files Browse the repository at this point in the history
Co-authored-by: Joel Challis <[email protected]>
Co-authored-by: jack <[email protected]>
  • Loading branch information
3 people authored Jun 20, 2023
1 parent 7bd1d18 commit 0abe312
Show file tree
Hide file tree
Showing 8 changed files with 150 additions and 0 deletions.
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": {
"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": {
"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
22 changes: 22 additions & 0 deletions keyboards/nacly/bigsmoothknob/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# 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):

make nacly/bigsmoothknob:default

Flashing example for this keyboard:

make nacly/bigsmoothknob: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:

* **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

0 comments on commit 0abe312

Please sign in to comment.