logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

keymap.c (1753B)


  1. /* Copyright 2019 Yiancar
  2. *
  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. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #include QMK_KEYBOARD_H
  17. uint8_t led_state = 1;
  18. // Defines the keycodes used by our macros in process_record_user
  19. enum custom_keycodes {
  20. MECHBOARDURL = SAFE_RANGE,
  21. QMKURL,
  22. MKUK,
  23. LEDCHANGE
  24. };
  25. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  26. [0] = LAYOUT( /* Base */
  27. MECHBOARDURL, QMKURL, MKUK, LEDCHANGE
  28. ),
  29. };
  30. bool process_record_user(uint16_t keycode, keyrecord_t *record) {
  31. switch (keycode) {
  32. case MECHBOARDURL:
  33. if (record->event.pressed) {
  34. SEND_STRING("https://mechboards.co.uk/" SS_TAP(X_ENTER));
  35. }
  36. break;
  37. case QMKURL:
  38. if (record->event.pressed) {
  39. SEND_STRING("https://qmk.fm/" SS_TAP(X_ENTER));
  40. }
  41. break;
  42. case MKUK:
  43. if (record->event.pressed) {
  44. SEND_STRING("MKUK4 was amazing!");
  45. }
  46. break;
  47. case LEDCHANGE:
  48. if (record->event.pressed) {
  49. led_state = !led_state;
  50. gpio_write_pin(F6, led_state);
  51. }
  52. break;
  53. }
  54. return true;
  55. }
  56. void matrix_init_user(void) {
  57. gpio_set_pin_output(F6);
  58. gpio_write_pin_low(F6);
  59. }