summaryrefslogtreecommitdiff
path: root/keyboards/crazy_keyboard_68/crazy_keyboard_68.c
diff options
context:
space:
mode:
authorchent7 <34766434+chent7@users.noreply.github.com>2020-11-10 13:06:55 +0800
committerGitHub <noreply@github.com>2020-11-09 21:06:55 -0800
commit8af767cb1d36222a4d0ec8286d346d4896e923d4 (patch)
tree313a7eaff505374b19c1039361ddbd26e2cd45fc /keyboards/crazy_keyboard_68/crazy_keyboard_68.c
parenta9f65b760a49744b13d822ab359876a52779bd9e (diff)
[Keyboard] Crazy Keyboard 68 (#10693)
* Entry and readme for crazy keyboard 68 * Defined layout in keyboard.h * Basic setup done * Working config, keymaps, rgb confirmed. Caps lock led untested * Update readme.md Image links * Update config.h * Update crazy_keyboard_68.c #include "quantum.h" * Match PR * Update keyboards/crazy_keyboard_68/crazy_keyboard_68.c * Update keyboards/crazy_keyboard_68/keymaps/default/keymap.c * Update keyboards/crazy_keyboard_68/keymaps/default/keymap.c * Update keyboards/crazy_keyboard_68/info.json * Update keyboards/crazy_keyboard_68/crazy_keyboard_68.h * Update keyboards/crazy_keyboard_68/rules.mk * Update keyboards/crazy_keyboard_68/rules.mk * Update keyboards/crazy_keyboard_68/config.h
Diffstat (limited to 'keyboards/crazy_keyboard_68/crazy_keyboard_68.c')
-rw-r--r--keyboards/crazy_keyboard_68/crazy_keyboard_68.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/keyboards/crazy_keyboard_68/crazy_keyboard_68.c b/keyboards/crazy_keyboard_68/crazy_keyboard_68.c
new file mode 100644
index 0000000000..f4f8515b7c
--- /dev/null
+++ b/keyboards/crazy_keyboard_68/crazy_keyboard_68.c
@@ -0,0 +1,36 @@
+/* Copyright 2020 chent7
+ *
+ * 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 "crazy_keyboard_68.h"
+
+void matrix_init_kb(void) {
+ led_init_ports();
+
+ matrix_init_user();
+}
+
+void led_init_ports(void) {
+ // Caps lock pin
+ setPinOutput(B0);
+ writePinHigh(B0);
+}
+
+bool led_update_kb(led_t led_state) {
+ if(led_update_user(led_state)) {
+ writePin(B0, !led_state.caps_lock);
+ }
+ return true;
+}