logo

qmk_firmware

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

rev1.h (824B)


  1. /*
  2. * ----------------------------------------------------------------------------
  3. * "THE BEER-WARE LICENSE" (Revision 42):
  4. * <https://github.com/Legonut> wrote this file. As long as you retain this
  5. * notice you can do whatever you want with this stuff. If we meet some day, and
  6. * you think this stuff is worth it, you can buy me a beer in return. David Rauseo
  7. * ----------------------------------------------------------------------------
  8. */
  9. #pragma once
  10. #include "quantum.h"
  11. #include "touch_encoder.h"
  12. #include "common_oled.h"
  13. // weak functions overridable by the user
  14. void render_layer_status(void);
  15. void render_leds_status(void);
  16. void render_touch_status(void);
  17. void render_audio_status(void);
  18. #ifdef RGB_MATRIX_ENABLE
  19. // utility function to cycle active led zones
  20. void rgb_matrix_increase_flags(void);
  21. #endif