diff options
| author | christopherjanzen <chrisisaakjanzen@gmail.com> | 2018-05-02 12:57:33 -0500 |
|---|---|---|
| committer | Drashna Jaelre <drashna@live.com> | 2018-05-02 10:57:33 -0700 |
| commit | d1dfefc8971be50f85da4084a78de00a163c6482 (patch) | |
| tree | d38cd501599621cf288344ef3baf887a17efad61 | |
| parent | ddb1c83695008bbf87d6bebc836b408ed70a8abb (diff) | |
| download | qmk_firmware-d1dfefc8971be50f85da4084a78de00a163c6482.tar.gz qmk_firmware-d1dfefc8971be50f85da4084a78de00a163c6482.zip | |
Add cijanzen Pearl 40% keymap (#2878)
* Add personal keymap for Pearl 40%
* Updating readme and adding keymap image
* Updated readme
* Force make to use Python 3
* cleanup keymap
* updated keymap image
* update readme for new keymap image
* reverting atmega32a_program
* removed redundant sections of user config and rules
* fixed user config file
* fixed led indicators to properly show layer 4
| -rw-r--r-- | keyboards/pearl/keymaps/cijanzen/README.md | 29 | ||||
| -rw-r--r-- | keyboards/pearl/keymaps/cijanzen/config.h | 27 | ||||
| -rw-r--r-- | keyboards/pearl/keymaps/cijanzen/keymap.c | 77 | ||||
| -rw-r--r-- | keyboards/pearl/keymaps/cijanzen/pearl-cijanzen-keymap.jpg | bin | 0 -> 424673 bytes | |||
| -rw-r--r-- | keyboards/pearl/keymaps/cijanzen/rules.mk | 11 |
5 files changed, 144 insertions, 0 deletions
diff --git a/keyboards/pearl/keymaps/cijanzen/README.md b/keyboards/pearl/keymaps/cijanzen/README.md new file mode 100644 index 000000000..745442955 --- /dev/null +++ b/keyboards/pearl/keymaps/cijanzen/README.md | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | # cijanzen's Pearl 40% | ||
| 2 | |||
| 3 | ## Layout | ||
| 4 | |||
| 5 | The firmware offers five layers: | ||
| 6 | |||
| 7 | 1. Base layer | ||
| 8 | 2. Numbers and arrows (Fn1) | ||
| 9 | 3. F-row and navigation (Fn2) | ||
| 10 | 4. Media and RGB controls (Fn3) | ||
| 11 | 5. Utils (Fn2+Fn3) | ||
| 12 | |||
| 13 | A few specifics worth mentioning: | ||
| 14 | - Autoshift has been enabled to allow for easier access of shifted keys | ||
| 15 | - Tab will operate as tab key on tap and fn layer on hold | ||
| 16 | - Indicator LEDs indicate the current layer | ||
| 17 | |||
| 18 | |||
| 19 |  | ||
| 20 | |||
| 21 | Base for this firmware copied from jetpacktuxedo's and rask's QMK firmware | ||
| 22 | |||
| 23 | --- | ||
| 24 | |||
| 25 | ## Compiling and flashing | ||
| 26 | |||
| 27 | To compile and flash the HEX follow the [Pearl 40% instructions](https://gist.github.com/clee/a43f198a70de0e6dae22d7638b41440a). | ||
| 28 | |||
| 29 | You might need to check the comments at the bottom of the gist as well. | ||
diff --git a/keyboards/pearl/keymaps/cijanzen/config.h b/keyboards/pearl/keymaps/cijanzen/config.h new file mode 100644 index 000000000..b34fdad90 --- /dev/null +++ b/keyboards/pearl/keymaps/cijanzen/config.h | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2017 Luiz Ribeiro <luizribeiro@gmail.com> | ||
| 3 | |||
| 4 | This program is free software: you can redistribute it and/or modify | ||
| 5 | it under the terms of the GNU General Public License as published by | ||
| 6 | the Free Software Foundation, either version 2 of the License, or | ||
| 7 | (at your option) any later version. | ||
| 8 | |||
| 9 | This program is distributed in the hope that it will be useful, | ||
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | GNU General Public License for more details. | ||
| 13 | |||
| 14 | You should have received a copy of the GNU General Public License | ||
| 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 16 | */ | ||
| 17 | |||
| 18 | #ifndef CONFIG_USER_H | ||
| 19 | #define CONFIG_USER_H | ||
| 20 | |||
| 21 | #include QMK_KEYBOARD_CONFIG_H | ||
| 22 | |||
| 23 | #undef BACKLIGHT_LEVELS | ||
| 24 | #define BACKLIGHT_LEVELS 3 | ||
| 25 | |||
| 26 | |||
| 27 | #endif | ||
diff --git a/keyboards/pearl/keymaps/cijanzen/keymap.c b/keyboards/pearl/keymaps/cijanzen/keymap.c new file mode 100644 index 000000000..896e157fd --- /dev/null +++ b/keyboards/pearl/keymaps/cijanzen/keymap.c | |||
| @@ -0,0 +1,77 @@ | |||
| 1 | #include QMK_KEYBOARD_H | ||
| 2 | |||
| 3 | #define ____ KC_TRNS | ||
| 4 | // Tab on tap or Function layer 1 on hold | ||
| 5 | #define FN_TAB LT(1, KC_TAB) | ||
| 6 | #define KC_SLP KC_SYSTEM_SLEEP | ||
| 7 | |||
| 8 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 9 | // BASE LAYER | ||
| 10 | [0] = LAYOUT_all( | ||
| 11 | KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, | ||
| 12 | FN_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_ENT, | ||
| 13 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, MO(2), | ||
| 14 | KC_LCTL, KC_LALT, KC_LGUI, KC_BSPC, KC_BSPC, KC_SPC, MO(3), MO(1) | ||
| 15 | ), | ||
| 16 | // BASE LAYER TWO (Fn1) | ||
| 17 | [1] = LAYOUT_all( | ||
| 18 | KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, | ||
| 19 | ____, ____, ____, ____, ____, ____, ____, ____, ____, KC_UP, KC_QUOT, KC_BSLS, | ||
| 20 | ____, ____, ____, ____, ____, ____, ____, ____, KC_LEFT, KC_DOWN, KC_RGHT, KC_RSFT, | ||
| 21 | ____, ____, ____, KC_DEL, KC_DEL, ____, KC_RGUI, ____ | ||
| 22 | ), | ||
| 23 | // FROW LAYER AND ARROWS (Fn2) | ||
| 24 | [2] = LAYOUT_all( | ||
| 25 | KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, | ||
| 26 | ____, ____, ____, ____, ____, ____, ____, ____, ____, KC_PGUP, ____, ____, | ||
| 27 | ____, ____, ____, ____, ____, ____, ____, ____, KC_HOME, KC_PGDN, KC_END, ____, | ||
| 28 | MO(4), ____, ____, ____, ____, ____, ____, ____ | ||
| 29 | ), | ||
| 30 | // MEDIA AND RGB (Fn3) | ||
| 31 | [3] = LAYOUT_all( | ||
| 32 | ____, RGB_M_P, RGB_M_B, RGB_M_R, RGB_M_SW, RGB_M_SN, RGB_M_K, RGB_M_X, RGB_M_G, KC_MPRV, KC_MPLY, KC_MNXT, KC_DEL, | ||
| 33 | ____, ____, ____, RGB_HUI, RGB_SAI, RGB_VAI, ____, ____, ____, ____, ____, ____, | ||
| 34 | ____, RGB_MOD, RGB_TOG, RGB_HUD, RGB_SAD, RGB_VAD, BL_TOGG, BL_STEP, ____, ____, ____, ____, | ||
| 35 | ____, ____, ____, ____, ____, ____, ____, ____ | ||
| 36 | ), | ||
| 37 | // UTIL (Fn1+Fn3) | ||
| 38 | [4] = LAYOUT_all( | ||
| 39 | KC_SLP, ____, ____, ____, ____, ____, ____, ____, ____, ____, ____, KC_PSCR, RESET, | ||
| 40 | ____, ____, ____, ____, ____, ____, ____, ____, ____, ____, ____, ____, | ||
| 41 | ____, ____, ____, ____, ____, ____, ____, ____, ____, ____, ____, ____, | ||
| 42 | ____, ____, ____, ____, ____, ____, ____, ____ | ||
| 43 | ), | ||
| 44 | }; | ||
| 45 | |||
| 46 | /** | ||
| 47 | * Status LED layer indicators courtesy of jetpacktuxedo's firmware | ||
| 48 | */ | ||
| 49 | uint32_t layer_state_set_kb(uint32_t state) | ||
| 50 | { | ||
| 51 | if (state & (1<<1)) { // if we are on layer 1 | ||
| 52 | PORTD |= (1 << PD0); // light num lock led | ||
| 53 | } else if (state & (1<<2)) { // if we are on layer 2 | ||
| 54 | |||
| 55 | if (state & (1<<4)) { | ||
| 56 | PORTD |= (1 << PD0); // light all indicator leds | ||
| 57 | PORTD |= (1 << PD1); | ||
| 58 | PORTD |= (1 << PD6); | ||
| 59 | } else { | ||
| 60 | PORTD &= ~(1 << PD0); | ||
| 61 | PORTD |= (1 << PD1); // light caps lock led | ||
| 62 | PORTD &= ~(1 << PD6); | ||
| 63 | } | ||
| 64 | } else if (state & (1<<3)) { // if we are on layer 3 | ||
| 65 | PORTD |= (1 << PD6); // light scroll lock led | ||
| 66 | } else if (state & (1<<4)) { // if we are stuck on layer 4 | ||
| 67 | PORTD |= (1 << PD0); // light all indicator leds | ||
| 68 | PORTD |= (1 << PD1); | ||
| 69 | PORTD |= (1 << PD6); | ||
| 70 | } else { | ||
| 71 | PORTD &= ~(1 << PD0); | ||
| 72 | PORTD &= ~(1 << PD1); | ||
| 73 | PORTD &= ~(1 << PD6); | ||
| 74 | } | ||
| 75 | |||
| 76 | return state; | ||
| 77 | } | ||
diff --git a/keyboards/pearl/keymaps/cijanzen/pearl-cijanzen-keymap.jpg b/keyboards/pearl/keymaps/cijanzen/pearl-cijanzen-keymap.jpg new file mode 100644 index 000000000..60e5c4746 --- /dev/null +++ b/keyboards/pearl/keymaps/cijanzen/pearl-cijanzen-keymap.jpg | |||
| Binary files differ | |||
diff --git a/keyboards/pearl/keymaps/cijanzen/rules.mk b/keyboards/pearl/keymaps/cijanzen/rules.mk new file mode 100644 index 000000000..863b9419a --- /dev/null +++ b/keyboards/pearl/keymaps/cijanzen/rules.mk | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | # build options | ||
| 2 | BOOTMAGIC_ENABLE = yes | ||
| 3 | MOUSEKEY_ENABLE = no | ||
| 4 | EXTRAKEY_ENABLE = yes | ||
| 5 | CONSOLE_ENABLE = no | ||
| 6 | COMMAND_ENABLE = yes | ||
| 7 | BACKLIGHT_ENABLE = yes | ||
| 8 | RGBLIGHT_ENABLE = yes | ||
| 9 | RGBLIGHT_CUSTOM_DRIVER = yes | ||
| 10 | # TAP_DANCE_ENABLE = yes | ||
| 11 | AUTO_SHIFT_ENABLE = yes | ||
