aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/bpiphany/sixshooter/sixshooter.c
diff options
context:
space:
mode:
authormechmerlin <mechmerlin@gmail.com>2019-02-18 10:17:47 -0800
committerDrashna Jaelre <drashna@live.com>2019-02-19 20:48:35 -0800
commitffb75b720fd0d4d28ed0ae99b66313c06df47183 (patch)
tree5837c340bef6eab446c23551dc04ac603df90005 /keyboards/bpiphany/sixshooter/sixshooter.c
parent33f1259f89f9d752c9507c5a2cb19a9286cf1388 (diff)
downloadfirmware-ffb75b720fd0d4d28ed0ae99b66313c06df47183.tar.gz
firmware-ffb75b720fd0d4d28ed0ae99b66313c06df47183.tar.bz2
firmware-ffb75b720fd0d4d28ed0ae99b66313c06df47183.zip
move sixshooter into bpiphany directory and edit readme
Diffstat (limited to 'keyboards/bpiphany/sixshooter/sixshooter.c')
-rw-r--r--keyboards/bpiphany/sixshooter/sixshooter.c38
1 files changed, 38 insertions, 0 deletions
diff --git a/keyboards/bpiphany/sixshooter/sixshooter.c b/keyboards/bpiphany/sixshooter/sixshooter.c
new file mode 100644
index 000000000..87a739454
--- /dev/null
+++ b/keyboards/bpiphany/sixshooter/sixshooter.c
@@ -0,0 +1,38 @@
+#include "sixshooter.h"
+
+extern inline void sixshooter_led_0_on(void);
+extern inline void sixshooter_led_1_on(void);
+extern inline void sixshooter_led_2_on(void);
+extern inline void sixshooter_led_3_on(void);
+extern inline void sixshooter_led_4_on(void);
+extern inline void sixshooter_led_5_on(void);
+
+extern inline void sixshooter_led_0_off(void);
+extern inline void sixshooter_led_1_off(void);
+extern inline void sixshooter_led_2_off(void);
+extern inline void sixshooter_led_3_off(void);
+extern inline void sixshooter_led_4_off(void);
+extern inline void sixshooter_led_5_off(void);
+
+extern inline void sixshooter_led_all_on(void);
+extern inline void sixshooter_led_all_off(void);
+
+void matrix_init_kb(void) {
+ // put your keyboard start-up code here
+ // runs once when the firmware starts up
+
+ matrix_init_user();
+}
+
+void matrix_scan_kb(void) {
+ // put your looping keyboard code here
+ // runs every cycle (a lot)
+
+ matrix_scan_user();
+}
+
+void led_set_kb(uint8_t usb_led) {
+ // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
+
+ led_set_user(usb_led);
+}