diff options
author | Will McGloughlin <3410869+wymcg@users.noreply.github.com> | 2021-12-14 21:52:10 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-14 18:52:10 -0800 |
commit | 605de079583db1f1106ebfd239b948170d929a58 (patch) | |
tree | 2bb14939d0ad36ffe93c1b93a8b9076ba5061795 /keyboards/psuieee/pluto12/keymaps | |
parent | e9731c19c70c8411b99775bf12303a1b2baf585c (diff) | |
download | qmk_firmware-605de079583db1f1106ebfd239b948170d929a58.tar.gz qmk_firmware-605de079583db1f1106ebfd239b948170d929a58.zip |
[Keyboard] Add pluto12 (#15369)
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'keyboards/psuieee/pluto12/keymaps')
-rw-r--r-- | keyboards/psuieee/pluto12/keymaps/default/keymap.c | 23 | ||||
-rw-r--r-- | keyboards/psuieee/pluto12/keymaps/default/readme.md | 1 |
2 files changed, 24 insertions, 0 deletions
diff --git a/keyboards/psuieee/pluto12/keymaps/default/keymap.c b/keyboards/psuieee/pluto12/keymaps/default/keymap.c new file mode 100644 index 0000000000..1c09c4fc83 --- /dev/null +++ b/keyboards/psuieee/pluto12/keymaps/default/keymap.c @@ -0,0 +1,23 @@ +// Copyright 2021 Will McGLoughlin (wymcg) +// 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, + _FN +}; + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + [_BASE] = LAYOUT( + KC_PGUP, KC_MUTE, KC_VOLD, KC_VOLU, + KC_PGDN, KC_MPLY, KC_MPRV, KC_MNXT, + KC_NO, KC_HOME, KC_END, OSL(_FN) + ), + [_FN] = LAYOUT( + KC_F1, KC_F2, KC_F3, KC_F4, + KC_F5, KC_F6, KC_F7, KC_F8, + KC_F9, KC_F10, KC_F11, KC_F12 + ) +}; diff --git a/keyboards/psuieee/pluto12/keymaps/default/readme.md b/keyboards/psuieee/pluto12/keymaps/default/readme.md new file mode 100644 index 0000000000..8416c0fe61 --- /dev/null +++ b/keyboards/psuieee/pluto12/keymaps/default/readme.md @@ -0,0 +1 @@ +# The default keymap for pluto12 |