summaryrefslogtreecommitdiff
path: root/keyboards/zj68/zj68.c
diff options
context:
space:
mode:
authorCollin Diekvoss <cdiekvoss@gmail.com>2019-07-22 12:17:11 -0500
committerMechMerlin <30334081+mechmerlin@users.noreply.github.com>2019-07-22 10:17:11 -0700
commit17ff9cf554d64fd3e036f3d6e06cff952d8802bf (patch)
tree5ceaa43634bf7a498235d68a1b4f02c8804f7437 /keyboards/zj68/zj68.c
parentd3ebf903c994c8a6501863ed1e508454ad112d6c (diff)
New Keyboard: ZJ68 (#6378)
* added zj68 keyboard * Suggested changes * Suggested changes * Suggested changes * Requested changes * Update keyboards/zj68/rules.mk Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com>
Diffstat (limited to 'keyboards/zj68/zj68.c')
-rw-r--r--keyboards/zj68/zj68.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/keyboards/zj68/zj68.c b/keyboards/zj68/zj68.c
new file mode 100644
index 0000000000..960c943033
--- /dev/null
+++ b/keyboards/zj68/zj68.c
@@ -0,0 +1,24 @@
+/* Copyright 2019 Collin Diekvoss <cdiekvoss@gmail.com>
+ *
+ * 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 "zj68.h"
+
+void matrix_init_kb(void) {
+ matrix_init_user();
+}
+
+void matrix_scan_kb(void) {
+ matrix_scan_user();
+}