diff options
author | Markus Knutsson <markus.knutsson@tweety.se> | 2022-09-30 05:01:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-29 20:01:33 -0700 |
commit | dab9edeabb1ccbaa0d71d10b5b349c6862dea771 (patch) | |
tree | c1b275ca6641349d5e241d1f8f153410868d1cb3 /keyboards/tweetydabird/lbs6/keymaps | |
parent | 2c4fd924c02b081b0e0d87f972c0e55b08741eec (diff) |
[Keyboard] Add Little Big Scroll 6 macropad (#18510)
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Diffstat (limited to 'keyboards/tweetydabird/lbs6/keymaps')
-rw-r--r-- | keyboards/tweetydabird/lbs6/keymaps/default/keymap.c | 30 | ||||
-rw-r--r-- | keyboards/tweetydabird/lbs6/keymaps/default/readme.md | 3 |
2 files changed, 33 insertions, 0 deletions
diff --git a/keyboards/tweetydabird/lbs6/keymaps/default/keymap.c b/keyboards/tweetydabird/lbs6/keymaps/default/keymap.c new file mode 100644 index 0000000000..590cb8ea0b --- /dev/null +++ b/keyboards/tweetydabird/lbs6/keymaps/default/keymap.c @@ -0,0 +1,30 @@ +// Copyright 2022 Markus Knutsson (@TweetyDaBird) +// SPDX-License-Identifier: GPL-2.0-or-later + +#include QMK_KEYBOARD_H + +// Defines names for use in layer keycodes and the keymap +enum layer_names { + _BASE +}; + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + + [_BASE] = LAYOUT( + KC_MPLY, + RGB_MOD, RGB_VAI, RGB_TOG, + KC_MPRV, KC_MPLY, KC_MNXT + + ) +}; + +bool encoder_update_user(uint8_t index, bool clockwise) { + if (index == 0) { + if (clockwise) { + tap_code(KC_VOLU); + } else { + tap_code(KC_VOLD); + } + } + return false; +} diff --git a/keyboards/tweetydabird/lbs6/keymaps/default/readme.md b/keyboards/tweetydabird/lbs6/keymaps/default/readme.md new file mode 100644 index 0000000000..22c4296f55 --- /dev/null +++ b/keyboards/tweetydabird/lbs6/keymaps/default/readme.md @@ -0,0 +1,3 @@ +# The default keymap for LBS6 + +This is a very basic layout using LBS6 as media playback buttons. |