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.3 KiB

  1. /* Copyright 2021 Jordan Duabe
  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. #ifdef OLED_ENABLE
  17. # include QMK_KEYBOARD_H
  18. static void render_logo(void) {
  19. static const char PROGMEM qmk_logo[] = {
  20. 0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x87,0x88,0x89,0x8a,0x8b,0x8c,0x8d,0x8e,0x8f,0x90,0x91,0x92,0x93,0x94,
  21. 0xa0,0xa1,0xa2,0xa3,0xa4,0xa5,0xa6,0xa7,0xa8,0xa9,0xaa,0xab,0xac,0xad,0xae,0xaf,0xb0,0xb1,0xb2,0xb3,0xb4,
  22. 0xc0,0xc1,0xc2,0xc3,0xc4,0xc5,0xc6,0xc7,0xc8,0xc9,0xca,0xcb,0xcc,0xcd,0xce,0xcf,0xd0,0xd1,0xd2,0xd3,0xd4,0
  23. };
  24. oled_write_P(qmk_logo, false);
  25. }
  26. static void print_status_narrow(void) {
  27. oled_write_P(PSTR("Sofle"), false);
  28. oled_write_P(PSTR("\n\n\n"), false);
  29. // Print current mode
  30. switch (get_highest_layer(layer_state)) {
  31. case 0:
  32. oled_write_ln_P(PSTR("Qwrt"), false);
  33. break;
  34. default:
  35. oled_write_P(PSTR("Mod\n"), false);
  36. break;
  37. }
  38. oled_write_P(PSTR("\n\n"), false);
  39. // Print current layer
  40. oled_write_ln_P(PSTR("LAYER"), false);
  41. switch (get_highest_layer(layer_state)) {
  42. case 0:
  43. oled_write_P(PSTR("Base\n"), false);
  44. break;
  45. case 1:
  46. oled_write_P(PSTR("Raise"), false);
  47. break;
  48. case 2:
  49. oled_write_P(PSTR("Lower"), false);
  50. break;
  51. default:
  52. oled_write_ln_P(PSTR("Undef"), false);
  53. }
  54. oled_write_P(PSTR("\n\n"), false);
  55. }
  56. oled_rotation_t oled_init_user(oled_rotation_t rotation) {
  57. if (is_keyboard_master()) {
  58. return OLED_ROTATION_270;
  59. }
  60. return rotation;
  61. }
  62. void oled_task_user(void) {
  63. if (is_keyboard_master()) {
  64. print_status_narrow();
  65. } else {
  66. render_logo();
  67. }
  68. }
  69. #endif