From 9d316603776a8260a479b25211495d6cffafd705 Mon Sep 17 00:00:00 2001 From: Craig Gardner Date: Wed, 23 Dec 2020 14:13:34 -0800 Subject: [PATCH 1/9] add support for bigknob Add support for bigknob macropad --- keyboards/leafcutterlabs/bigknob/bigknob.c | 1 + keyboards/leafcutterlabs/bigknob/bigknob.h | 9 +++ keyboards/leafcutterlabs/bigknob/config.h | 63 +++++++++++++++++++ keyboards/leafcutterlabs/bigknob/info.json | 12 ++++ .../bigknob/keymaps/default/keymap.c | 40 ++++++++++++ keyboards/leafcutterlabs/bigknob/readme.md | 15 +++++ keyboards/leafcutterlabs/bigknob/rules.mk | 27 ++++++++ 7 files changed, 167 insertions(+) create mode 100644 keyboards/leafcutterlabs/bigknob/bigknob.c create mode 100644 keyboards/leafcutterlabs/bigknob/bigknob.h create mode 100644 keyboards/leafcutterlabs/bigknob/config.h create mode 100644 keyboards/leafcutterlabs/bigknob/info.json create mode 100644 keyboards/leafcutterlabs/bigknob/keymaps/default/keymap.c create mode 100644 keyboards/leafcutterlabs/bigknob/readme.md create mode 100644 keyboards/leafcutterlabs/bigknob/rules.mk diff --git a/keyboards/leafcutterlabs/bigknob/bigknob.c b/keyboards/leafcutterlabs/bigknob/bigknob.c new file mode 100644 index 000000000000..4ad9e610c5cf --- /dev/null +++ b/keyboards/leafcutterlabs/bigknob/bigknob.c @@ -0,0 +1 @@ +#include "bigknob.h" diff --git a/keyboards/leafcutterlabs/bigknob/bigknob.h b/keyboards/leafcutterlabs/bigknob/bigknob.h new file mode 100644 index 000000000000..2d61ed893bb1 --- /dev/null +++ b/keyboards/leafcutterlabs/bigknob/bigknob.h @@ -0,0 +1,9 @@ +#pragma once + +#include "quantum.h" + +#define LAYOUT_ortho_1x5( \ + k01, k02, k03, k04, k05\ + ) { \ + { k01, k02, k03, k04, k05 } \ +} diff --git a/keyboards/leafcutterlabs/bigknob/config.h b/keyboards/leafcutterlabs/bigknob/config.h new file mode 100644 index 000000000000..424ccf808cb9 --- /dev/null +++ b/keyboards/leafcutterlabs/bigknob/config.h @@ -0,0 +1,63 @@ +/* +Copyright 2012 Jun Wako + +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 . +*/ + +#pragma once + +#include "config_common.h" + +/* USB Device descriptor parameter */ +#define VENDOR_ID 0xCEEB +#define PRODUCT_ID 0x0007 +#define DEVICE_VER 0x0001 +#define MANUFACTURER leafcutterlabs +#define PRODUCT bigKNOB +#define DESCRIPTION 5 key with rotary encoder board + +/* key matrix size */ +#define MATRIX_ROWS 1 +#define MATRIX_COLS 5 + +/* + * Keyboard Matrix Assignments + * + * Change this to how you wired your keyboard + * COLS: AVR pins used for columns, left to right + * ROWS: AVR pins used for rows, top to bottom + * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode) + * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) + * NO_DIODE = switches are directly connected to AVR pins + * +*/ + +// Srating with closest to USB port +#define DIRECT_PINS { \ + { B7, D4, D6, F6, F7} \ +} +//speed for double tap +#define TAPPING_TERM 300 + +#define UNUSED_PINS + +/* rotary encoder 1,2,3 closest to usb port is 0*/ +#define ENCODERS_PAD_A { D0} +#define ENCODERS_PAD_B { D2} +#define ENCODER_RESOLUTION 8 //default/suggested + +/* ws2812 RGB LED */ +#define RGB_DI_PIN C7 //D3 - underglow C7 - backlight +#define RGBLIGHT_ANIMATIONS +#define RGBLED_NUM 5 // Number of LEDs \ No newline at end of file diff --git a/keyboards/leafcutterlabs/bigknob/info.json b/keyboards/leafcutterlabs/bigknob/info.json new file mode 100644 index 000000000000..697edebbefdd --- /dev/null +++ b/keyboards/leafcutterlabs/bigknob/info.json @@ -0,0 +1,12 @@ +{ + "keyboard_name": "bigknob", + "url": "", + "maintainer": "qmk", + "width": 5, + "height": 1, + "layouts": { + "LAYOUT_ortho_1x5": { + "layout": [{"x":0, "y":0}, {"x":1, "y":0}, {"x":2, "y":0}, {"x":3, "y":0}, {"x":4, "y":0}] + } + } +} diff --git a/keyboards/leafcutterlabs/bigknob/keymaps/default/keymap.c b/keyboards/leafcutterlabs/bigknob/keymaps/default/keymap.c new file mode 100644 index 000000000000..15e9a0564981 --- /dev/null +++ b/keyboards/leafcutterlabs/bigknob/keymaps/default/keymap.c @@ -0,0 +1,40 @@ +#include QMK_KEYBOARD_H + +#define _MAIN 0 + +void encoder_update_user(uint8_t index, bool clockwise) { + if (index == 0) { + if (clockwise) { + tap_code(KC_VOLU); + } else { + tap_code(KC_VOLD); + } + } +} + +enum { + TD_RGB = 0 +}; + +void dance_rgb_finished (qk_tap_dance_state_t *state, void *user_data) { + if (state->count == 1) { + register_code (KC_MEDIA_NEXT_TRACK); + unregister_code (KC_MEDIA_NEXT_TRACK); + } else if (state->count == 2) { + rgblight_toggle(); + } else if (state->count == 3) { + rgblight_step(); + } +} + +//All tap dance functions would go here. Only showing this one. +qk_tap_dance_action_t tap_dance_actions[] = { + [TD_RGB] = ACTION_TAP_DANCE_FN_ADVANCED (NULL, dance_rgb_finished, NULL) +}; + +// +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { //buttion closest to usb is first + [_MAIN] = LAYOUT( + KC_MUTE, KC_MEDIA_PREV_TRACK, KC_MEDIA_PLAY_PAUSE, KC_MEDIA_STOP, TD(TD_RGB) + ) +}; diff --git a/keyboards/leafcutterlabs/bigknob/readme.md b/keyboards/leafcutterlabs/bigknob/readme.md new file mode 100644 index 000000000000..63a65cc1f2ba --- /dev/null +++ b/keyboards/leafcutterlabs/bigknob/readme.md @@ -0,0 +1,15 @@ +# bigknob + +A 4 key Macropad with Rotatry Encoder based on Atmega32u4. + +![](https://github.com/LeafCutterLabs/bigKNOB/blob/master/Media/thinkpad.jpg) + +* Keyboard Maintainer: [LeafCutterLabs](https://github.com/LeafCutterLabs) +* Hardware Supported: Atmega32u4 +* Hardware availability: Case files are available [here](https://github.com/LeafCutterLabs/bigKNOB) + +Make example for this keyboard (after setting up your build environment): + + make bigknob:default + +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). diff --git a/keyboards/leafcutterlabs/bigknob/rules.mk b/keyboards/leafcutterlabs/bigknob/rules.mk new file mode 100644 index 000000000000..9ba0d05ea034 --- /dev/null +++ b/keyboards/leafcutterlabs/bigknob/rules.mk @@ -0,0 +1,27 @@ +# MCU name +MCU = atmega32u4 + +# Bootloader selection +BOOTLOADER = caterina + +# Build Options +# change to "no" to disable the options, or define them in the Makefile in +# the appropriate keymap folder that will get included automatically +# +ENCODER_ENABLE = yes #enable rotary encoders +BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration +MOUSEKEY_ENABLE = yes # Mouse keys +EXTRAKEY_ENABLE = yes # Audio control and System control +CONSOLE_ENABLE = no # Console for debug +COMMAND_ENABLE = no # Commands for debug and configuration +NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work +BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality +MIDI_ENABLE = no # MIDI controls +AUDIO_ENABLE = no # Audio output on port C6 +UNICODE_ENABLE = yes # Unicode +BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID +RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight. +TAP_DANCE_ENABLE = yes # Double press does something different + +# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE +SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend From c20eef272c78c64634830cf55d5c08e12900953f Mon Sep 17 00:00:00 2001 From: Craig Gardner Date: Wed, 23 Dec 2020 14:47:20 -0800 Subject: [PATCH 2/9] corrected files --- keyboards/leafcutterlabs/bigknob/bigknob.c | 4 ++++ keyboards/leafcutterlabs/bigknob/bigknob.h | 2 ++ 2 files changed, 6 insertions(+) diff --git a/keyboards/leafcutterlabs/bigknob/bigknob.c b/keyboards/leafcutterlabs/bigknob/bigknob.c index 4ad9e610c5cf..e5d46f056aeb 100644 --- a/keyboards/leafcutterlabs/bigknob/bigknob.c +++ b/keyboards/leafcutterlabs/bigknob/bigknob.c @@ -1 +1,5 @@ #include "bigknob.h" + +void matrix_init_kb(void) { + matrix_init_user(); +} diff --git a/keyboards/leafcutterlabs/bigknob/bigknob.h b/keyboards/leafcutterlabs/bigknob/bigknob.h index 2d61ed893bb1..05a58192d655 100644 --- a/keyboards/leafcutterlabs/bigknob/bigknob.h +++ b/keyboards/leafcutterlabs/bigknob/bigknob.h @@ -7,3 +7,5 @@ ) { \ { k01, k02, k03, k04, k05 } \ } + +#define LAYOUT LAYOUT_ortho_1x5 \ No newline at end of file From 33ffd1548b5958da9afbf2df660754a7df67fb41 Mon Sep 17 00:00:00 2001 From: Craig Gardner <40006110+LeafCutterLabs@users.noreply.github.com> Date: Tue, 29 Dec 2020 15:22:04 -0800 Subject: [PATCH 3/9] Apply suggestions from code review Co-authored-by: Joel Challis --- keyboards/leafcutterlabs/bigknob/bigknob.c | 4 ---- keyboards/leafcutterlabs/bigknob/config.h | 7 +------ keyboards/leafcutterlabs/bigknob/rules.mk | 24 +++++++++------------- 3 files changed, 11 insertions(+), 24 deletions(-) diff --git a/keyboards/leafcutterlabs/bigknob/bigknob.c b/keyboards/leafcutterlabs/bigknob/bigknob.c index e5d46f056aeb..4ad9e610c5cf 100644 --- a/keyboards/leafcutterlabs/bigknob/bigknob.c +++ b/keyboards/leafcutterlabs/bigknob/bigknob.c @@ -1,5 +1 @@ #include "bigknob.h" - -void matrix_init_kb(void) { - matrix_init_user(); -} diff --git a/keyboards/leafcutterlabs/bigknob/config.h b/keyboards/leafcutterlabs/bigknob/config.h index 424ccf808cb9..e7f66dc6c0c2 100644 --- a/keyboards/leafcutterlabs/bigknob/config.h +++ b/keyboards/leafcutterlabs/bigknob/config.h @@ -25,8 +25,6 @@ along with this program. If not, see . #define DEVICE_VER 0x0001 #define MANUFACTURER leafcutterlabs #define PRODUCT bigKNOB -#define DESCRIPTION 5 key with rotary encoder board - /* key matrix size */ #define MATRIX_ROWS 1 #define MATRIX_COLS 5 @@ -47,9 +45,6 @@ along with this program. If not, see . #define DIRECT_PINS { \ { B7, D4, D6, F6, F7} \ } -//speed for double tap -#define TAPPING_TERM 300 - #define UNUSED_PINS /* rotary encoder 1,2,3 closest to usb port is 0*/ @@ -60,4 +55,4 @@ along with this program. If not, see . /* ws2812 RGB LED */ #define RGB_DI_PIN C7 //D3 - underglow C7 - backlight #define RGBLIGHT_ANIMATIONS -#define RGBLED_NUM 5 // Number of LEDs \ No newline at end of file +#define RGBLED_NUM 5 // Number of LEDs diff --git a/keyboards/leafcutterlabs/bigknob/rules.mk b/keyboards/leafcutterlabs/bigknob/rules.mk index 9ba0d05ea034..6d6364cadd7f 100644 --- a/keyboards/leafcutterlabs/bigknob/rules.mk +++ b/keyboards/leafcutterlabs/bigknob/rules.mk @@ -5,23 +5,19 @@ MCU = atmega32u4 BOOTLOADER = caterina # Build Options -# change to "no" to disable the options, or define them in the Makefile in -# the appropriate keymap folder that will get included automatically +# change yes to no to disable # -ENCODER_ENABLE = yes #enable rotary encoders -BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration +BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration MOUSEKEY_ENABLE = yes # Mouse keys EXTRAKEY_ENABLE = yes # Audio control and System control CONSOLE_ENABLE = no # Console for debug COMMAND_ENABLE = no # Commands for debug and configuration -NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work -BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality -MIDI_ENABLE = no # MIDI controls -AUDIO_ENABLE = no # Audio output on port C6 -UNICODE_ENABLE = yes # Unicode -BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID -RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight. -TAP_DANCE_ENABLE = yes # Double press does something different - # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE -SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend +SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend +# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work +NKRO_ENABLE = yes # USB Nkey Rollover +BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality +RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow +BLUETOOTH_ENABLE = no # Enable Bluetooth +AUDIO_ENABLE = no # Audio output +ENCODER_ENABLE = yes # Enable rotary encoders From b515ac0296921b73e1aacc095dc161956d0ce4d7 Mon Sep 17 00:00:00 2001 From: Craig Gardner Date: Tue, 29 Dec 2020 16:17:27 -0800 Subject: [PATCH 4/9] corrected tap dance --- keyboards/leafcutterlabs/bigknob/rules.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/keyboards/leafcutterlabs/bigknob/rules.mk b/keyboards/leafcutterlabs/bigknob/rules.mk index 6d6364cadd7f..5993a2c1cf0f 100644 --- a/keyboards/leafcutterlabs/bigknob/rules.mk +++ b/keyboards/leafcutterlabs/bigknob/rules.mk @@ -21,3 +21,4 @@ RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow BLUETOOTH_ENABLE = no # Enable Bluetooth AUDIO_ENABLE = no # Audio output ENCODER_ENABLE = yes # Enable rotary encoders +TAP_DANCE_ENABLE = yes \ No newline at end of file From e3d408be6160b9f0a7e102a2345e9dd30539b1c2 Mon Sep 17 00:00:00 2001 From: Craig Gardner <40006110+LeafCutterLabs@users.noreply.github.com> Date: Wed, 30 Dec 2020 06:46:36 -0800 Subject: [PATCH 5/9] Update config.h --- keyboards/leafcutterlabs/bigknob/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keyboards/leafcutterlabs/bigknob/config.h b/keyboards/leafcutterlabs/bigknob/config.h index e7f66dc6c0c2..5f958293cd8a 100644 --- a/keyboards/leafcutterlabs/bigknob/config.h +++ b/keyboards/leafcutterlabs/bigknob/config.h @@ -50,7 +50,7 @@ along with this program. If not, see . /* rotary encoder 1,2,3 closest to usb port is 0*/ #define ENCODERS_PAD_A { D0} #define ENCODERS_PAD_B { D2} -#define ENCODER_RESOLUTION 8 //default/suggested +#define ENCODER_RESOLUTION 4 //default/suggested /* ws2812 RGB LED */ #define RGB_DI_PIN C7 //D3 - underglow C7 - backlight From 681dd559f5e69f67fbf0bf2c20cb6d10c27fd905 Mon Sep 17 00:00:00 2001 From: Craig Gardner <40006110+LeafCutterLabs@users.noreply.github.com> Date: Wed, 30 Dec 2020 07:08:48 -0800 Subject: [PATCH 6/9] correct image link --- keyboards/leafcutterlabs/bigknob/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keyboards/leafcutterlabs/bigknob/readme.md b/keyboards/leafcutterlabs/bigknob/readme.md index 63a65cc1f2ba..ddde1522ab2d 100644 --- a/keyboards/leafcutterlabs/bigknob/readme.md +++ b/keyboards/leafcutterlabs/bigknob/readme.md @@ -2,7 +2,7 @@ A 4 key Macropad with Rotatry Encoder based on Atmega32u4. -![](https://github.com/LeafCutterLabs/bigKNOB/blob/master/Media/thinkpad.jpg) +![](https://i.imgur.com/Px3EpOUl.jpg) * Keyboard Maintainer: [LeafCutterLabs](https://github.com/LeafCutterLabs) * Hardware Supported: Atmega32u4 From deabb07cd9644555558fd7d52bdf814263b83f64 Mon Sep 17 00:00:00 2001 From: Craig Gardner <40006110+LeafCutterLabs@users.noreply.github.com> Date: Wed, 30 Dec 2020 07:23:11 -0800 Subject: [PATCH 7/9] Apply suggestions from code review Co-authored-by: Ryan --- keyboards/leafcutterlabs/bigknob/keymaps/default/keymap.c | 3 +-- keyboards/leafcutterlabs/bigknob/readme.md | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/keyboards/leafcutterlabs/bigknob/keymaps/default/keymap.c b/keyboards/leafcutterlabs/bigknob/keymaps/default/keymap.c index 15e9a0564981..524a708bb28a 100644 --- a/keyboards/leafcutterlabs/bigknob/keymaps/default/keymap.c +++ b/keyboards/leafcutterlabs/bigknob/keymaps/default/keymap.c @@ -18,8 +18,7 @@ enum { void dance_rgb_finished (qk_tap_dance_state_t *state, void *user_data) { if (state->count == 1) { - register_code (KC_MEDIA_NEXT_TRACK); - unregister_code (KC_MEDIA_NEXT_TRACK); + tap_code(KC_MNXT); } else if (state->count == 2) { rgblight_toggle(); } else if (state->count == 3) { diff --git a/keyboards/leafcutterlabs/bigknob/readme.md b/keyboards/leafcutterlabs/bigknob/readme.md index ddde1522ab2d..f8cced3071ce 100644 --- a/keyboards/leafcutterlabs/bigknob/readme.md +++ b/keyboards/leafcutterlabs/bigknob/readme.md @@ -10,6 +10,6 @@ A 4 key Macropad with Rotatry Encoder based on Atmega32u4. Make example for this keyboard (after setting up your build environment): - make bigknob:default + make leafcutterlabs/bigknob:default 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). From ffe32cbab1335e47c7bc4a48875de2559288a7aa Mon Sep 17 00:00:00 2001 From: Craig Gardner Date: Fri, 1 Jan 2021 17:41:02 -0800 Subject: [PATCH 8/9] added GPL headers --- keyboards/leafcutterlabs/bigknob/bigknob.c | 16 ++++++++++++++++ keyboards/leafcutterlabs/bigknob/bigknob.h | 16 ++++++++++++++++ .../bigknob/keymaps/default/keymap.c | 16 ++++++++++++++++ 3 files changed, 48 insertions(+) diff --git a/keyboards/leafcutterlabs/bigknob/bigknob.c b/keyboards/leafcutterlabs/bigknob/bigknob.c index 4ad9e610c5cf..0a4d173e5784 100644 --- a/keyboards/leafcutterlabs/bigknob/bigknob.c +++ b/keyboards/leafcutterlabs/bigknob/bigknob.c @@ -1 +1,17 @@ +/* Copyright 2021 Craig Gardner + * + * 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 . + */ + #include "bigknob.h" diff --git a/keyboards/leafcutterlabs/bigknob/bigknob.h b/keyboards/leafcutterlabs/bigknob/bigknob.h index 05a58192d655..ddd3aa4ae002 100644 --- a/keyboards/leafcutterlabs/bigknob/bigknob.h +++ b/keyboards/leafcutterlabs/bigknob/bigknob.h @@ -1,3 +1,19 @@ +/* Copyright 2021 Craig Gardner + * + * 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 . + */ + #pragma once #include "quantum.h" diff --git a/keyboards/leafcutterlabs/bigknob/keymaps/default/keymap.c b/keyboards/leafcutterlabs/bigknob/keymaps/default/keymap.c index 524a708bb28a..999d3c434766 100644 --- a/keyboards/leafcutterlabs/bigknob/keymaps/default/keymap.c +++ b/keyboards/leafcutterlabs/bigknob/keymaps/default/keymap.c @@ -1,3 +1,19 @@ +/* Copyright 2021 Craig Gardner + * + * 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 . + */ + #include QMK_KEYBOARD_H #define _MAIN 0 From 20a356ed7d12d638861594ca33c870467d2d98a3 Mon Sep 17 00:00:00 2001 From: Craig Gardner <40006110+LeafCutterLabs@users.noreply.github.com> Date: Sat, 2 Jan 2021 08:22:51 -0800 Subject: [PATCH 9/9] Update readme.md --- keyboards/leafcutterlabs/bigknob/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keyboards/leafcutterlabs/bigknob/readme.md b/keyboards/leafcutterlabs/bigknob/readme.md index f8cced3071ce..d67a1858b5af 100644 --- a/keyboards/leafcutterlabs/bigknob/readme.md +++ b/keyboards/leafcutterlabs/bigknob/readme.md @@ -1,6 +1,6 @@ # bigknob -A 4 key Macropad with Rotatry Encoder based on Atmega32u4. +A 4 key Macropad with Rotary Encoder based on Atmega32u4. ![](https://i.imgur.com/Px3EpOUl.jpg)