aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/scythe/scythe.c
diff options
context:
space:
mode:
authorENDO Katsuhiro <ka2hiro@curlybracket.co.jp>2019-05-16 00:52:30 +0900
committerMechMerlin <30334081+mechmerlin@users.noreply.github.com>2019-05-15 08:52:30 -0700
commit547eb55553b386e0dfa5bb78badfa001608b7a34 (patch)
tree3a01da4ce1860e9aca002511984453c600ef3cc0 /keyboards/scythe/scythe.c
parent7209266ea1bd8b6bce4d468ea016689602499239 (diff)
downloadfirmware-547eb55553b386e0dfa5bb78badfa001608b7a34.tar.gz
firmware-547eb55553b386e0dfa5bb78badfa001608b7a34.tar.bz2
firmware-547eb55553b386e0dfa5bb78badfa001608b7a34.zip
Add a new keybord Scythe (#5873)
* Add a new keyboard Scythe. * Update info.json. * Use pragma once. * Comment out IS_COMMAND macro. * Remove DISABLE_JTAG definition. * Remove unnecessary backslashes. * Change layer defines to enum. * Remove dead code. * Fix typo(RGBLIGHT_SPLIT). * Change BOOTMAGIC_ENABLE to "lite". * Remove unnecessary keys. Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Fix width. Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Fix hight. Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com>
Diffstat (limited to 'keyboards/scythe/scythe.c')
-rw-r--r--keyboards/scythe/scythe.c43
1 files changed, 43 insertions, 0 deletions
diff --git a/keyboards/scythe/scythe.c b/keyboards/scythe/scythe.c
new file mode 100644
index 000000000..e8060ac27
--- /dev/null
+++ b/keyboards/scythe/scythe.c
@@ -0,0 +1,43 @@
+/* Copyright 2019 ENDO Katsuhiro <ka2hiro@kagizaraya.jp>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+#include "scythe.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);
+}