keymap.c 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. Copyright 2019 Yiancar
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation, either version 2 of the License, or
  6. (at your option) any later version.
  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. You should have received a copy of the GNU General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. */
  14. #include QMK_KEYBOARD_H
  15. // Defines the keycodes used by our macros in process_record_user
  16. enum custom_keycodes {
  17. DCAPS = SAFE_RANGE,
  18. };
  19. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  20. [0] = LAYOUT( /* Base */
  21. KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_SCLN, KC_CIRC, KC_BSPC, KC_ENT, KC_0, KC_1, KC_2, KC_3, KC_4,
  22. KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Z, KC_U, KC_I, KC_O, KC_P, KC_RBRC, KC_PLUS, KC_5, KC_6, KC_7, KC_8, KC_9,
  23. DCAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_BSLS, KC_RBRC, KC_DLR, KC_EQL, KC_0, KC_1, KC_2, KC_3, KC_4,
  24. KC_LSFT, KC_Y, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_MINS, KC_5, KC_6, KC_7, KC_8, KC_9,
  25. KC_SPC
  26. ),
  27. };
  28. bool process_record_user(uint16_t keycode, keyrecord_t *record) {
  29. switch (keycode) {
  30. case DCAPS:
  31. if (record->event.pressed) {
  32. // When keycode DCAPS is pressed.
  33. // This is needed for mac.
  34. tap_code(KC_CAPS);
  35. } else {
  36. // When keycode DCAPS is released.
  37. }
  38. break;
  39. }
  40. return true;
  41. }
  42. void matrix_init_user(void) {
  43. setPinOutput(B0);
  44. writePinLow(B0);
  45. }
  46. void matrix_scan_user(void) {
  47. }
  48. void led_set_user(uint8_t usb_led) {
  49. if (IS_LED_ON(usb_led, USB_LED_CAPS_LOCK)) {
  50. writePinHigh(B0);
  51. } else {
  52. writePinLow(B0);
  53. }
  54. }