aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/pilcrow/pilcrow.c
diff options
context:
space:
mode:
authorclimbalima <climbalima@gmail.com>2016-12-03 17:30:40 -0500
committerclimbalima <climbalima@gmail.com>2016-12-03 17:30:40 -0500
commit45b7718fb154c6400b169a9d3005cedebd37ff9a (patch)
tree0048c5b7824a7ec9713c87ffbb81b83e3fc65857 /keyboards/pilcrow/pilcrow.c
parent59c54d651b4495f2790a9873e3aaa310d6ded787 (diff)
downloadfirmware-45b7718fb154c6400b169a9d3005cedebd37ff9a.tar.gz
firmware-45b7718fb154c6400b169a9d3005cedebd37ff9a.tar.bz2
firmware-45b7718fb154c6400b169a9d3005cedebd37ff9a.zip
cleaned up personal projects
Diffstat (limited to 'keyboards/pilcrow/pilcrow.c')
-rw-r--r--keyboards/pilcrow/pilcrow.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/keyboards/pilcrow/pilcrow.c b/keyboards/pilcrow/pilcrow.c
deleted file mode 100644
index c8243df7b..000000000
--- a/keyboards/pilcrow/pilcrow.c
+++ /dev/null
@@ -1,28 +0,0 @@
-#include "pilcrow.h"
-
-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();
-}
-
-bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
- // put your per-action keyboard code here
- // runs for every action, just before processing by the firmware
-
- return process_record_user(keycode, record);
-}
-
-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);
-}