summaryrefslogtreecommitdiff
path: root/keyboards/kbdfans/maja_soldered/maja_soldered.c
diff options
context:
space:
mode:
authormoyi4681 <moyi4681@users.noreply.github.com>2020-09-07 08:55:06 +0800
committerGitHub <noreply@github.com>2020-09-06 17:55:06 -0700
commit8ea8a80c5b0eb4aac35b1f9f993f033bb04f1555 (patch)
treed19b761c247aa4e6886cda991485aaef3141e341 /keyboards/kbdfans/maja_soldered/maja_soldered.c
parent788cbcf8283126eb3d60e71272591efd91e641fe (diff)
[Keyboard] add Maja soldered keyboard (#10152)
* add maja_soldered keyboard add maja_soldered keyboard * Update info.json * update keymap * Update keyboards/kbdfans/maja_soldered/config.h Co-authored-by: Drashna Jaelre <drashna@live.com> * Update keymap.c * Update keyboards/kbdfans/maja_soldered/rules.mk Co-authored-by: Ryan <fauxpark@gmail.com> * Update keyboards/kbdfans/maja_soldered/rules.mk Co-authored-by: Ryan <fauxpark@gmail.com> * Update keymap.c * Update keymap.c * Update keymap.c Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'keyboards/kbdfans/maja_soldered/maja_soldered.c')
-rwxr-xr-xkeyboards/kbdfans/maja_soldered/maja_soldered.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/keyboards/kbdfans/maja_soldered/maja_soldered.c b/keyboards/kbdfans/maja_soldered/maja_soldered.c
new file mode 100755
index 0000000000..1f0f48c4cd
--- /dev/null
+++ b/keyboards/kbdfans/maja_soldered/maja_soldered.c
@@ -0,0 +1,29 @@
+/* Copyright 2020 dztech kbdfans
+ *
+ * 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 "maja_soldered.h"
+
+void matrix_init_kb(void) {
+ setPinOutput(D4);
+ matrix_init_user();
+}
+
+bool led_update_kb(led_t led_state) {
+ bool res = led_update_user(led_state);
+ if(res) {
+ writePin(D4, !led_state.caps_lock);
+ }
+ return res;
+}