diff options
author | Nick Blyumberg <nblyumberg@gmail.com> | 2020-05-09 17:52:58 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-09 22:52:58 +0100 |
commit | 179c868059734211add698857ca6d71bf9fd9c05 (patch) | |
tree | a3223b144a430eae40a2b99373cc11ff446ba0d6 /keyboards/1upkeyboards/super16/keymaps/nblyumberg/config.h | |
parent | 7b11dcce106219cdbbbd3ea1e58891ab3dcffc67 (diff) | |
download | qmk_firmware-179c868059734211add698857ca6d71bf9fd9c05.tar.gz |
[Keymap] Add nblyumberg 1upkeyboards super16 keymap (#8902)
* Updated with my super16 version for my keypad
* Added my folder to super16
* Set max LED brightness to 50%
* Added custom keycodes for enter/shift+enter and copy/paste on one key
* Fixed the boot up layer color
* Renamed folder
* Revert changes to root super16 files
* Update keymap config.h and rules.mk files
* Restore deleted 15game keymap files
* Corrected the hold keycode for CCCV
* Removed unnecessary comments
* Update keyboards/1upkeyboards/super16/keymaps/nblyumberg/keymap.c
Co-Authored-By: ridingqwerty <george.g.koenig@gmail.com>
* Update keyboards/1upkeyboards/super16/keymaps/nblyumberg/config.h
Co-Authored-By: ridingqwerty <george.g.koenig@gmail.com>
* Update keyboards/1upkeyboards/super16/keymaps/nblyumberg/keymap.c
Co-Authored-By: ridingqwerty <george.g.koenig@gmail.com>
* Rewriting the layer color functionality
* Revisions
* Fixed the layer switching
* Fixed the default layer color problem
* Added a function suggested by Drashna but it won't compile
* Cleaned up the code for PR
* Removed unnecessary define for layer colors
Co-authored-by: ridingqwerty <george.g.koenig@gmail.com>
Diffstat (limited to 'keyboards/1upkeyboards/super16/keymaps/nblyumberg/config.h')
-rw-r--r-- | keyboards/1upkeyboards/super16/keymaps/nblyumberg/config.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/keyboards/1upkeyboards/super16/keymaps/nblyumberg/config.h b/keyboards/1upkeyboards/super16/keymaps/nblyumberg/config.h new file mode 100644 index 000000000..3d0351288 --- /dev/null +++ b/keyboards/1upkeyboards/super16/keymaps/nblyumberg/config.h @@ -0,0 +1,13 @@ +#pragma once + +// Time out one shot layers after 3 seconds +#define ONESHOT_TIMEOUT 3000 + +#define RGBLED_NUM 16 + + +// Undef and redefine default brightness to half of 255 +#undef RGBLIGHT_LIMIT_VAL +#define RGBLIGHT_LIMIT_VAL 128 + +#define TAPPING_TERM 200 |