upload
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

tv44.h 374B

123456789101112131415161718192021
  1. #ifndef TV44_H
  2. #define TV44_H
  3. #include "matrix.h"
  4. #include "keymap_common.h"
  5. #ifdef BACKLIGHT_ENABLE
  6. #include "backlight.h"
  7. #endif
  8. #ifdef RGBLIGHT_ENABLE
  9. #include "rgblight1.h"
  10. #endif
  11. #include <stddef.h>
  12. #ifdef MIDI_ENABLE
  13. #include <keymap_midi.h>
  14. #endif
  15. void matrix_init_user(void);
  16. void matrix_scan_user(void);
  17. void process_action_user(keyrecord_t *record);
  18. #endif