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.

149 lines
6.6 KiB

  1. /* Copyright 2017 Mathias Andersson <wraul@dbox.se>
  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. #include "LUFA/Drivers/Peripheral/TWI.h"
  18. #include "i2c.h"
  19. #include "ssd1306.h"
  20. //Layers
  21. enum {
  22. BASE = 0,
  23. FUNCTION,
  24. };
  25. bool screenWorks = 0;
  26. //13 characters max without re-writing the "Layer: " format in iota_gfx_task_user()
  27. static char layer_lookup[][14] = {"Base","Function"};
  28. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  29. /* Keymap BASE: (Base Layer) Default Layer
  30. *
  31. * ,-----------------------------------------------------------. .-------------------.
  32. * | ~ | 1 | 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =|Backsp | |NumL| / | * | - |
  33. * |-----------------------------------------------------------| |-------------------|
  34. * |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| \ | | 7 | 8 | 9 | |
  35. * |-----------------------------------------------------------| |--------------| + |
  36. * |CAPS | A| S| D| F| G| H| J| K| L| ;| '|Return | | 4 | 5 | 6 | |
  37. * |-----------------------------------------------------------| |-------------------|
  38. * |Shift | Z| X| C| V| B| N| M| ,| .| /|Shift | | 1 | 2 | 3 | Ent|
  39. * |-----------------------------------------------------------| |--------------| |
  40. * |Ctrl|Gui |Alt | Space | Alt | Win |FN |Ctr | | 0 | . | |
  41. * `-----------------------------------------------------------' '-------------------'
  42. */
  43. [BASE] = LAYOUT_all(
  44. 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, KC_BSPC, XXXXXXX, KC_NLCK, KC_PSLS, KC_PAST, KC_PMNS, \
  45. KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, KC_P7, KC_P8, KC_P9, XXXXXXX, \
  46. KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, XXXXXXX, KC_ENT, KC_P4, KC_P5, KC_P6, KC_PPLS, \
  47. KC_LSFT, XXXXXXX, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, XXXXXXX, KC_P1, KC_P2, KC_P3, XXXXXXX, \
  48. KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RWIN, MO(FUNCTION), KC_RCTL, KC_P0, XXXXXXX, KC_PDOT, KC_PENT \
  49. ),
  50. /* Keymap FUNCTION: (Function Layer)
  51. *
  52. * ,-----------------------------------------------------------. .-------------------.
  53. * | | | | | | | | | | | | | | RESET | | | | | |
  54. * |-----------------------------------------------------------| |-------------------|
  55. * | | | | | | | | | | | | | | | | | | | |
  56. * |-----------------------------------------------------------| |-------------------|
  57. * | | | | | | | | | | | | | | | | | | |
  58. * |-----------------------------------------------------------| |-------------------|
  59. * | |Tog|Mod|Hu+|Hu-|Sa+|Sa-|Va+|Va-|Stp| | | | | | | |
  60. * |-----------------------------------------------------------| |--------------| |
  61. * | | | | | | | | | | | | |
  62. * `-----------------------------------------------------------' '-------------------'
  63. */
  64. [FUNCTION] = LAYOUT_all(
  65. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RESET, XXXXXXX, _______, _______, _______, _______, \
  66. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, XXXXXXX, \
  67. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, XXXXXXX, _______, _______, _______, _______, _______, \
  68. _______, XXXXXXX, RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD, BL_STEP, _______, _______, XXXXXXX, _______, _______, _______, XXXXXXX, \
  69. _______, _______, _______, _______, _______, _______, MO(FUNCTION), _______, _______, XXXXXXX, _______, _______ \
  70. ),
  71. };
  72. bool process_record_user(uint16_t keycode, keyrecord_t *record) {
  73. return true;
  74. }
  75. void led_set_user(uint8_t usb_led) {
  76. }
  77. void matrix_init_user(void) {
  78. #ifdef USE_I2C
  79. i2c_master_init();
  80. #ifdef SSD1306OLED
  81. // calls code for the SSD1306 OLED
  82. _delay_ms(400);
  83. TWI_Init(TWI_BIT_PRESCALE_1, TWI_BITLENGTH_FROM_FREQ(1, 800000));
  84. if ( iota_gfx_init() ) { // turns on the display
  85. screenWorks = 1;
  86. }
  87. #endif
  88. #endif
  89. #ifdef AUDIO_ENABLE
  90. startup_user();
  91. #endif
  92. }
  93. void matrix_scan_user(void) {
  94. #ifdef SSD1306OLED
  95. if ( screenWorks ) {
  96. iota_gfx_task(); // this is what updates the display continuously
  97. };
  98. #endif
  99. }
  100. void matrix_update(struct CharacterMatrix *dest,
  101. const struct CharacterMatrix *source) {
  102. if (memcmp(dest->display, source->display, sizeof(dest->display))) {
  103. memcpy(dest->display, source->display, sizeof(dest->display));
  104. dest->dirty = true;
  105. }
  106. }
  107. void iota_gfx_task_user(void) {
  108. #if DEBUG_TO_SCREEN
  109. if (debug_enable) {
  110. return;
  111. }
  112. #endif
  113. struct CharacterMatrix matrix;
  114. matrix_clear(&matrix);
  115. matrix_write_P(&matrix, PSTR("TKC M0LLY"));
  116. uint8_t layer = biton32(layer_state);
  117. char buf[40];
  118. snprintf(buf,sizeof(buf), "Undef-%d", layer);
  119. matrix_write_P(&matrix, PSTR("\nLayer: "));
  120. matrix_write(&matrix, layer_lookup[layer]);
  121. // Host Keyboard LED Status
  122. char led[40];
  123. snprintf(led, sizeof(led), "\n\n%s %s %s",
  124. (host_keyboard_leds() & (1<<USB_LED_NUM_LOCK)) ? "NUMLOCK" : " ",
  125. (host_keyboard_leds() & (1<<USB_LED_CAPS_LOCK)) ? "CAPS" : " ",
  126. (host_keyboard_leds() & (1<<USB_LED_SCROLL_LOCK)) ? "SCLK" : " ");
  127. matrix_write(&matrix, led);
  128. matrix_update(&display, &matrix);
  129. }