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 10 #pragma once 11 12 #include "quantum.h" 13 #include "touch_encoder.h" 14 #include "common_oled.h" 15 16 // weak functions overridable by the user 17 void render_layer_status(void); 18 void render_leds_status(void); 19 void render_touch_status(void); 20 void render_audio_status(void); 21 22 #ifdef RGB_MATRIX_ENABLE 23 // utility function to cycle active led zones 24 void rgb_matrix_increase_flags(void); 25 #endif