diff options
| author | dr-BEat <dr-BEat@users.noreply.github.com> | 2020-03-06 09:47:52 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-06 00:47:52 -0800 |
| commit | 3c0ef04390b3858a0b73707c88e56bb8f65983a9 (patch) | |
| tree | 4235458ab24830e48bdbed24b60ce14298c0fa3d /keyboards/dichotomy | |
| parent | fd7b52cc64683683109cfb146670b76782a3c490 (diff) | |
| download | qmk_firmware-3c0ef04390b3858a0b73707c88e56bb8f65983a9.tar.gz qmk_firmware-3c0ef04390b3858a0b73707c88e56bb8f65983a9.zip | |
[Keymap] Dichotomy keymap by beat (#8279)
* Added more led helpers
* Working keymap
* Added new mouse button an made lower layer toggleable
* Small improvement to process_record_user
* Removed extra layer buttons
* Added Numpad to apply layer
* Moved buttons and added toggle for raise button
* Added Menu,PrintScreen and Windowslock buttons, and left handmouse
* Fixed Scroll Buttons
* Turned TAPPING TOGGLE to 2
* Switched Del and Ctrl on left hand
* Added Home Button to Mouse layer
* Fixed led initialization to avoid red led on boot
* Updated formatting to follow guidelines
* Used enums instead of defines and used layer_state_t type
* Added license
* Moved TAPPING settings to keymap config
* Fixed small formatting issue in keymap.c
* Use GPIO Control instead of lowlevel ports
Diffstat (limited to 'keyboards/dichotomy')
| -rw-r--r--[-rwxr-xr-x] | keyboards/dichotomy/config.h | 0 | ||||
| -rwxr-xr-x | keyboards/dichotomy/dichotomy.c | 11 | ||||
| -rwxr-xr-x | keyboards/dichotomy/dichotomy.h | 16 | ||||
| -rw-r--r-- | keyboards/dichotomy/keymaps/beat/config.h | 19 | ||||
| -rw-r--r-- | keyboards/dichotomy/keymaps/beat/keymap.c | 126 | ||||
| -rwxr-xr-x | keyboards/dichotomy/matrix.c | 3 |
6 files changed, 162 insertions, 13 deletions
diff --git a/keyboards/dichotomy/config.h b/keyboards/dichotomy/config.h index 2fc098fe3..2fc098fe3 100755..100644 --- a/keyboards/dichotomy/config.h +++ b/keyboards/dichotomy/config.h | |||
diff --git a/keyboards/dichotomy/dichotomy.c b/keyboards/dichotomy/dichotomy.c index 41e12090c..b94030a37 100755 --- a/keyboards/dichotomy/dichotomy.c +++ b/keyboards/dichotomy/dichotomy.c | |||
| @@ -63,10 +63,13 @@ void pointing_device_task(void){ | |||
| 63 | } | 63 | } |
| 64 | 64 | ||
| 65 | void led_init(void) { | 65 | void led_init(void) { |
| 66 | DDRD |= (1<<1); | 66 | setPinOutput(D1); |
| 67 | PORTD |= (1<<1); | 67 | setPinOutput(F5); |
| 68 | DDRF |= (1<<4) | (1<<5); | 68 | setPinOutput(F6); |
| 69 | PORTF |= (1<<4) | (1<<5); | 69 | |
| 70 | writePinHigh(D1); | ||
| 71 | writePinHigh(F5); | ||
| 72 | writePinHigh(F6); | ||
| 70 | } | 73 | } |
| 71 | 74 | ||
| 72 | 75 | ||
diff --git a/keyboards/dichotomy/dichotomy.h b/keyboards/dichotomy/dichotomy.h index 4355a1c90..2023259b1 100755 --- a/keyboards/dichotomy/dichotomy.h +++ b/keyboards/dichotomy/dichotomy.h | |||
| @@ -5,12 +5,16 @@ | |||
| 5 | #include "pointing_device.h" | 5 | #include "pointing_device.h" |
| 6 | #include "quantum.h" | 6 | #include "quantum.h" |
| 7 | 7 | ||
| 8 | #define red_led_off() PORTF |= (1<<6) | 8 | #define red_led_off() writePinHigh(F6) |
| 9 | #define red_led_on() PORTF &= ~(1<<6) | 9 | #define red_led_on() writePinLow(F6) |
| 10 | #define blu_led_off() PORTF |= (1<<5) | 10 | #define blu_led_off() writePinHigh(F5) |
| 11 | #define blu_led_on() PORTF &= ~(1<<5) | 11 | #define blu_led_on() writePinLow(F5) |
| 12 | #define grn_led_off() PORTD |= (1<<1) | 12 | #define grn_led_off() writePinHigh(D1) |
| 13 | #define grn_led_on() PORTD &= ~(1<<1) | 13 | #define grn_led_on() writePinLow(D1) |
| 14 | |||
| 15 | #define red_led(flag) if (flag) red_led_on(); else red_led_off() | ||
| 16 | #define blu_led(flag) if (flag) blu_led_on(); else blu_led_off() | ||
| 17 | #define grn_led(flag) if (flag) grn_led_on(); else grn_led_off() | ||
| 14 | 18 | ||
| 15 | #define set_led_off() red_led_off(); grn_led_off(); blu_led_off() | 19 | #define set_led_off() red_led_off(); grn_led_off(); blu_led_off() |
| 16 | #define set_led_red() red_led_on(); grn_led_off(); blu_led_off() | 20 | #define set_led_red() red_led_on(); grn_led_off(); blu_led_off() |
diff --git a/keyboards/dichotomy/keymaps/beat/config.h b/keyboards/dichotomy/keymaps/beat/config.h new file mode 100644 index 000000000..f31e7469f --- /dev/null +++ b/keyboards/dichotomy/keymaps/beat/config.h | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | /* | ||
| 2 | * This program is free software: you can redistribute it and/or modify | ||
| 3 | * it under the terms of the GNU General Public License as published by | ||
| 4 | * the Free Software Foundation, either version 2 of the License, or | ||
| 5 | * (at your option) any later version. | ||
| 6 | * | ||
| 7 | * This program is distributed in the hope that it will be useful, | ||
| 8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 10 | * GNU General Public License for more details. | ||
| 11 | * | ||
| 12 | * You should have received a copy of the GNU General Public License | ||
| 13 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 14 | */ | ||
| 15 | |||
| 16 | #pragma once | ||
| 17 | |||
| 18 | #define TAPPING_TERM 200 | ||
| 19 | #define TAPPING_TOGGLE 2 | ||
diff --git a/keyboards/dichotomy/keymaps/beat/keymap.c b/keyboards/dichotomy/keymaps/beat/keymap.c new file mode 100644 index 000000000..c686d77d6 --- /dev/null +++ b/keyboards/dichotomy/keymaps/beat/keymap.c | |||
| @@ -0,0 +1,126 @@ | |||
| 1 | /* | ||
| 2 | * This program is free software: you can redistribute it and/or modify | ||
| 3 | * it under the terms of the GNU General Public License as published by | ||
| 4 | * the Free Software Foundation, either version 2 of the License, or | ||
| 5 | * (at your option) any later version. | ||
| 6 | * | ||
| 7 | * This program is distributed in the hope that it will be useful, | ||
| 8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 10 | * GNU General Public License for more details. | ||
| 11 | * | ||
| 12 | * You should have received a copy of the GNU General Public License | ||
| 13 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 14 | */ | ||
| 15 | |||
| 16 | #include QMK_KEYBOARD_H | ||
| 17 | |||
| 18 | enum layer_names { | ||
| 19 | _QWERTY, | ||
| 20 | _LOWER, | ||
| 21 | _RAISE, | ||
| 22 | _MOUSE, | ||
| 23 | _ADJUST | ||
| 24 | }; | ||
| 25 | |||
| 26 | enum dichotomy_keycodes { | ||
| 27 | MS_BTN1 = SAFE_RANGE, | ||
| 28 | MS_BTN2, | ||
| 29 | MS_BTN3 | ||
| 30 | }; | ||
| 31 | |||
| 32 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 33 | |||
| 34 | [_QWERTY] = LAYOUT( /* Base layout, nearly qwerty but with modifications because it's not a full keyboard. Obviously. */ | ||
| 35 | KC_ESCAPE, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC, | ||
| 36 | KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_ENT, | ||
| 37 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, TT(_MOUSE), | ||
| 38 | KC_LGUI, KC_LALT, KC_DEL, KC_RCTL, KC_RALT, KC_RGUI, | ||
| 39 | MS_BTN3, SFT_T(KC_ESCAPE), KC_LCTL, KC_SPC, KC_SPC, TT(_RAISE), TT(_LOWER), MS_BTN3 | ||
| 40 | ), | ||
| 41 | |||
| 42 | [_RAISE] = LAYOUT( /* Shifted layout, small changes (because angle brackets have been moved to thumb cluster buttons) */ | ||
| 43 | _______, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, _______, | ||
| 44 | _______, _______, KC_VOLD, KC_VOLU, KC_MPLY, KC_MNXT, KC_MUTE, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, _______, | ||
| 45 | _______, _______, KC_GRV, _______, _______, KC_MPRV, _______, KC_LABK, KC_RABK, KC_BSLS, KC_QUOT, _______, | ||
| 46 | _______, _______, _______, _______, _______, _______, | ||
| 47 | _______, _______, _______, _______, _______, _______, _______, _______ | ||
| 48 | ), | ||
| 49 | |||
| 50 | [_LOWER] = LAYOUT( /* Number layout, basically the main function layer */ | ||
| 51 | _______, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, _______, | ||
| 52 | _______, _______, KC_VOLD, KC_VOLU, KC_MPLY, KC_MNXT, KC_MUTE, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, _______, | ||
| 53 | _______, _______, KC_TILD, _______, _______, KC_MPRV, _______, _______, _______, KC_PIPE, KC_DQT, _______, | ||
| 54 | _______, _______, _______, _______, _______, _______, | ||
| 55 | _______, _______, _______, _______, _______, _______, _______, _______ | ||
| 56 | ), | ||
| 57 | |||
| 58 | [_ADJUST] = LAYOUT( /* Shifted number/function layout, for per-key control. Only active when shift is held, and number is toggled or held */ | ||
| 59 | KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_PSLS, KC_P7, KC_P8, KC_P9, KC_PMNS, _______, | ||
| 60 | KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_PAST, KC_P4, KC_P5, KC_P6, KC_PPLS, _______, | ||
| 61 | _______, _______, _______, LGUI(KC_L), KC_PSCR, KC_APP, KC_PCMM, KC_P1, KC_P2, KC_P3, KC_PEQL, _______, | ||
| 62 | _______, _______, _______, _______, KC_P0, KC_PDOT, | ||
| 63 | _______, _______, _______, _______, _______, _______, _______, _______ | ||
| 64 | ), | ||
| 65 | |||
| 66 | [_MOUSE] = LAYOUT( /* Mouse layer, including buttons for clicking. */ | ||
| 67 | _______, _______, _______, _______, _______, _______, KC_VOLU, KC_HOME, KC_WH_U, KC_PGUP, _______, _______, | ||
| 68 | _______, _______, MS_BTN2, MS_BTN3, MS_BTN1, _______, KC_VOLD, MS_BTN1, MS_BTN3, MS_BTN2, _______, _______, | ||
| 69 | _______, _______, _______, _______, _______, _______, KC_HOME, KC_END, KC_WH_D, KC_PGDN, _______, _______, | ||
| 70 | _______, KC_UP, _______, _______, KC_UP, _______, | ||
| 71 | _______, KC_LEFT, KC_DOWN, KC_RGHT, KC_LEFT, KC_DOWN, KC_RGHT, _______ | ||
| 72 | ) | ||
| 73 | }; | ||
| 74 | |||
| 75 | layer_state_t layer_state_set_user(layer_state_t state) { | ||
| 76 | red_led(layer_state_cmp(state, _LOWER)); | ||
| 77 | grn_led(layer_state_cmp(state, _RAISE)); | ||
| 78 | blu_led(layer_state_cmp(state, _MOUSE)); | ||
| 79 | return update_tri_layer_state(state, _LOWER, _RAISE, _ADJUST); | ||
| 80 | } | ||
| 81 | |||
| 82 | #define SetBitMask(variable, mask, on) if (on) variable |= mask; else variable &= ~mask | ||
| 83 | |||
| 84 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||
| 85 | report_mouse_t currentReport; | ||
| 86 | switch (keycode) { | ||
| 87 | //mouse buttons, for 1-3, to update the mouse report: | ||
| 88 | //MOUSE_BTN1-3 are consts defined in report.h | ||
| 89 | case MS_BTN1: | ||
| 90 | currentReport = pointing_device_get_report(); | ||
| 91 | SetBitMask(currentReport.buttons, MOUSE_BTN1, record->event.pressed); | ||
| 92 | pointing_device_set_report(currentReport); | ||
| 93 | return false; | ||
| 94 | case MS_BTN2: | ||
| 95 | currentReport = pointing_device_get_report(); | ||
| 96 | SetBitMask(currentReport.buttons, MOUSE_BTN2, record->event.pressed); | ||
| 97 | pointing_device_set_report(currentReport); | ||
| 98 | return false; | ||
| 99 | case MS_BTN3: | ||
| 100 | currentReport = pointing_device_get_report(); | ||
| 101 | SetBitMask(currentReport.buttons, MOUSE_BTN3, record->event.pressed); | ||
| 102 | pointing_device_set_report(currentReport); | ||
| 103 | return false; | ||
| 104 | case KC_WH_U: | ||
| 105 | currentReport = pointing_device_get_report(); | ||
| 106 | if(record->event.pressed) { | ||
| 107 | currentReport.v += 1; | ||
| 108 | } | ||
| 109 | else { | ||
| 110 | currentReport.v = 0; | ||
| 111 | } | ||
| 112 | pointing_device_set_report(currentReport); | ||
| 113 | return false; | ||
| 114 | case KC_WH_D: | ||
| 115 | currentReport = pointing_device_get_report(); | ||
| 116 | if(record->event.pressed) { | ||
| 117 | currentReport.v -= 1; | ||
| 118 | } | ||
| 119 | else { | ||
| 120 | currentReport.v = 0; | ||
| 121 | } | ||
| 122 | pointing_device_set_report(currentReport); | ||
| 123 | return false; | ||
| 124 | } | ||
| 125 | return true; | ||
| 126 | } | ||
diff --git a/keyboards/dichotomy/matrix.c b/keyboards/dichotomy/matrix.c index f14c90128..d93889e6a 100755 --- a/keyboards/dichotomy/matrix.c +++ b/keyboards/dichotomy/matrix.c | |||
| @@ -92,9 +92,6 @@ uint8_t matrix_cols(void) { | |||
| 92 | } | 92 | } |
| 93 | 93 | ||
| 94 | void matrix_init(void) { | 94 | void matrix_init(void) { |
| 95 | DDRF |= (1<<6); | ||
| 96 | DDRF |= (1<<5); | ||
| 97 | DDRD |= (1<<1); | ||
| 98 | matrix_init_quantum(); | 95 | matrix_init_quantum(); |
| 99 | } | 96 | } |
| 100 | 97 | ||
