diff options
| author | wanleg <32079073+wanleg@users.noreply.github.com> | 2018-09-17 13:41:59 -0700 |
|---|---|---|
| committer | Drashna Jaelre <drashna@live.com> | 2018-09-17 13:41:59 -0700 |
| commit | fe3bfd91c1a085716baa2b4396709ad5d77c7c75 (patch) | |
| tree | aa6fed83c0626b0a736696f56ff4a7dae0272504 /keyboards | |
| parent | 743449472e58651ec8111e6f70811103fb0a28bd (diff) | |
| download | qmk_firmware-fe3bfd91c1a085716baa2b4396709ad5d77c7c75.tar.gz qmk_firmware-fe3bfd91c1a085716baa2b4396709ad5d77c7c75.zip | |
Keymap: Big switch config (#3904)
* bigswitch keymap
* bigswitch keymap
* bigswitch keymap
* bigswitch keymap
* recommended edits made
* forgot to revert this change with the others
Diffstat (limited to 'keyboards')
| -rw-r--r-- | keyboards/bigswitch/bigswitch.c | 2 | ||||
| -rw-r--r-- | keyboards/bigswitch/keymaps/wanleg/config.h | 45 | ||||
| -rw-r--r-- | keyboards/bigswitch/keymaps/wanleg/keymap.c | 27 | ||||
| -rw-r--r-- | keyboards/bigswitch/keymaps/wanleg/rules.mk | 7 |
4 files changed, 81 insertions, 0 deletions
diff --git a/keyboards/bigswitch/bigswitch.c b/keyboards/bigswitch/bigswitch.c index dfd9710e2..b924c7017 100644 --- a/keyboards/bigswitch/bigswitch.c +++ b/keyboards/bigswitch/bigswitch.c | |||
| @@ -19,10 +19,12 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 19 | volatile uint8_t runonce = true; | 19 | volatile uint8_t runonce = true; |
| 20 | static uint16_t my_timer; | 20 | static uint16_t my_timer; |
| 21 | 21 | ||
| 22 | __attribute__ ((weak)) | ||
| 22 | void matrix_init_user(void) { | 23 | void matrix_init_user(void) { |
| 23 | my_timer = timer_read(); | 24 | my_timer = timer_read(); |
| 24 | } | 25 | } |
| 25 | 26 | ||
| 27 | __attribute__ ((weak)) | ||
| 26 | void matrix_scan_user(void) { | 28 | void matrix_scan_user(void) { |
| 27 | if (runonce && timer_elapsed(my_timer) > 1000) { | 29 | if (runonce && timer_elapsed(my_timer) > 1000) { |
| 28 | runonce = false; | 30 | runonce = false; |
diff --git a/keyboards/bigswitch/keymaps/wanleg/config.h b/keyboards/bigswitch/keymaps/wanleg/config.h new file mode 100644 index 000000000..f1e169345 --- /dev/null +++ b/keyboards/bigswitch/keymaps/wanleg/config.h | |||
| @@ -0,0 +1,45 @@ | |||
| 1 | /* Copyright 2018 wanleg | ||
| 2 | * | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | |||
| 17 | #pragma once | ||
| 18 | |||
| 19 | // place overrides here | ||
| 20 | #undef MATRIX_ROW_PINS | ||
| 21 | #define MATRIX_ROW_PINS { B4 } | ||
| 22 | #undef MATRIX_COL_PINS | ||
| 23 | #define MATRIX_COL_PINS { B6 } | ||
| 24 | //#define UNUSED_PINS | ||
| 25 | |||
| 26 | /* COL2ROW, ROW2COL, or CUSTOM_MATRIX */ | ||
| 27 | #undef DIODE_DIRECTION | ||
| 28 | #define DIODE_DIRECTION COL2ROW | ||
| 29 | |||
| 30 | #define BACKLIGHT_PIN B5 | ||
| 31 | #define BACKLIGHT_BREATHING | ||
| 32 | #define BACKLIGHT_LEVELS 3 | ||
| 33 | #define BREATHING_PERIOD 5 | ||
| 34 | |||
| 35 | /* for Tap Dance */ | ||
| 36 | #undef TAPPING_TERM | ||
| 37 | #define TAPPING_TERM 700 | ||
| 38 | |||
| 39 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
| 40 | //#define DEBOUNCING_DELAY 5 | ||
| 41 | #undef DEBOUNCING_DELAY | ||
| 42 | #define DEBOUNCING_DELAY 2 | ||
| 43 | |||
| 44 | // set flashing LED with QMK DFU | ||
| 45 | #define QMK_LED B0 | ||
diff --git a/keyboards/bigswitch/keymaps/wanleg/keymap.c b/keyboards/bigswitch/keymaps/wanleg/keymap.c new file mode 100644 index 000000000..7f4150e58 --- /dev/null +++ b/keyboards/bigswitch/keymaps/wanleg/keymap.c | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | /* Copyright 2018 wanleg | ||
| 2 | * | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | #include QMK_KEYBOARD_H | ||
| 17 | #include "wanleg.h" | ||
| 18 | |||
| 19 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 20 | [0] = LAYOUT( /* Base */ | ||
| 21 | TD(CAD_TD) \ | ||
| 22 | ), | ||
| 23 | }; | ||
| 24 | |||
| 25 | void led_set_user(uint8_t usb_led) { | ||
| 26 | |||
| 27 | } | ||
diff --git a/keyboards/bigswitch/keymaps/wanleg/rules.mk b/keyboards/bigswitch/keymaps/wanleg/rules.mk new file mode 100644 index 000000000..bc4a1873f --- /dev/null +++ b/keyboards/bigswitch/keymaps/wanleg/rules.mk | |||
| @@ -0,0 +1,7 @@ | |||
| 1 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | ||
| 2 | |||
| 3 | #If using a ProMicro and it has the QMK DFU bootloader instead of Caterina, | ||
| 4 | #run "make <keyboard>:<keymap> dfu=qmk" when compiling to ensure it is flagged properly after being flashed | ||
| 5 | ifeq ($(strip $(dfu)), qmk) | ||
| 6 | BOOTLOADER = qmk-dfu | ||
| 7 | endif \ No newline at end of file | ||
