bb-oled.h 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. /* Copyright 2021 Batuhan Başerdem
  2. * <baserdem.batuhan@gmail.com> @bbaserdem
  3. *
  4. * This program is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation, either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. #pragma once
  18. #include "bbaserdem.h"
  19. // Contain the main oled writer here
  20. void oled_task_user(void);
  21. // Some generic rendering functions
  22. void render_qmk_logo(uint8_t row, uint8_t col);
  23. void render_layer(uint8_t row, uint8_t col, uint8_t top_layer);
  24. void render_modifiers_lite(uint8_t row, uint8_t col, uint8_t mods);
  25. void render_encoder(uint8_t row, uint8_t col, uint8_t index, uint8_t layer);
  26. void render_wpm(uint8_t row, uint8_t col);
  27. void render_keymap(uint8_t row, uint8_t col, bool isLite);
  28. #ifdef RGB_MATRIX_ENABLE
  29. void render_rgb_lite(uint8_t row, uint8_t col);
  30. #endif // RGB_MATRIX_ENABLE
  31. void render_status_lite(uint8_t row, uint8_t col);