]> git.donarmstrong.com Git - qmk_firmware.git/blobdiff - quantum/template/keymaps/default/keymap.c
Backlight abstraction and other changes (#439)
[qmk_firmware.git] / quantum / template / keymaps / default / keymap.c
index 4121fd860c14a57df17ba9cb96b94b2355cf641f..e28a4723e904e2c5ef08635936195947f4643e2e 100644 (file)
@@ -1,6 +1,3 @@
-// This is the canonical layout file for the Quantum project. If you want to add another keyboard,
-// this is the style you want to emulate.
-
 #include "%KEYBOARD%.h"
 
 const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
@@ -28,3 +25,20 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
       }
     return MACRO_NONE;
 };
+
+
+void matrix_init_user(void) {
+
+}
+
+void matrix_scan_user(void) {
+
+}
+
+bool process_record_user(uint16_t keycode, keyrecord_t *record) {
+  return true;
+}
+
+void led_set_user(uint8_t usb_led) {
+
+}
\ No newline at end of file