You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

76 lines
2.1 KiB

  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. // when keycode QMKBEST is pressed
  35. SEND_STRING("https://mechboards.co.uk/" SS_TAP(X_ENTER));
  36. } else {
  37. // when keycode QMKBEST is released
  38. }
  39. break;
  40. case QMKURL:
  41. if (record->event.pressed) {
  42. // when keycode QMKURL is pressed
  43. SEND_STRING("https://qmk.fm/" SS_TAP(X_ENTER));
  44. } else {
  45. // when keycode QMKURL is released
  46. }
  47. break;
  48. case MKUK:
  49. if (record->event.pressed) {
  50. // when keycode QMKURL is pressed
  51. SEND_STRING("MKUK4 was amazing!");
  52. } else {
  53. // when keycode QMKURL is released
  54. }
  55. break;
  56. case LEDCHANGE:
  57. if (record->event.pressed) {
  58. // when keycode QMKURL is pressed
  59. led_state = !led_state;
  60. writePin(F6, led_state);
  61. } else {
  62. // when keycode QMKURL is released
  63. }
  64. break;
  65. }
  66. return true;
  67. }
  68. void matrix_init_user(void) {
  69. setPinOutput(F6);
  70. writePinLow(F6);
  71. }