summaryrefslogtreecommitdiff
path: root/keyboards/arrow_pad/arrow_pad.h
diff options
context:
space:
mode:
authorChristopher Browne2016-06-22 11:26:26 -0400
committerChristopher Browne2016-06-22 11:26:26 -0400
commitb0caf32741cf415a45333828f1661d9f6b72570f (patch)
tree5e2b8203ab232c0a89264e96716ebf1a859f6189 /keyboards/arrow_pad/arrow_pad.h
parentee3c7892ad585e2e702d8975420d25ae052d97bb (diff)
parent8c1bfdf0bd9aae13d8722fd107deca40ffc7932c (diff)
Merge branch 'master' of https://github.com/jackhumbert/qmk_firmware
Diffstat (limited to 'keyboards/arrow_pad/arrow_pad.h')
-rw-r--r--keyboards/arrow_pad/arrow_pad.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/keyboards/arrow_pad/arrow_pad.h b/keyboards/arrow_pad/arrow_pad.h
new file mode 100644
index 000000000..b3fb578e8
--- /dev/null
+++ b/keyboards/arrow_pad/arrow_pad.h
@@ -0,0 +1,18 @@
+#ifndef ARROW_PAD_H
+#define ARROW_PAD_H
+
+#include "matrix.h"
+#include "keymap.h"
+#ifdef BACKLIGHT_ENABLE
+ #include "backlight.h"
+#endif
+#include <avr/io.h>
+#include <stddef.h>
+
+void matrix_init_user(void);
+void matrix_scan_user(void);
+bool process_action_user(keyrecord_t *record);
+void led_set_user(uint8_t usb_led);
+void backlight_init_ports(void);
+
+#endif