summaryrefslogtreecommitdiff
path: root/keyboards/glenpickle/chimera_ortho_plus/chimera_ortho_plus.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/glenpickle/chimera_ortho_plus/chimera_ortho_plus.c')
-rw-r--r--keyboards/glenpickle/chimera_ortho_plus/chimera_ortho_plus.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/keyboards/glenpickle/chimera_ortho_plus/chimera_ortho_plus.c b/keyboards/glenpickle/chimera_ortho_plus/chimera_ortho_plus.c
new file mode 100644
index 0000000000..6d87ed7053
--- /dev/null
+++ b/keyboards/glenpickle/chimera_ortho_plus/chimera_ortho_plus.c
@@ -0,0 +1,18 @@
+#include "chimera_ortho_plus.h"
+
+void led_init(void) {
+ setPinOutput(D1);
+ setPinOutput(F4);
+ setPinOutput(F5);
+ writePinHigh(D1);
+ writePinHigh(F4);
+ writePinHigh(F5);
+}
+
+
+void matrix_init_kb(void) {
+ // put your keyboard start-up code here
+ // runs once when the firmware starts up
+ matrix_init_user();
+ led_init();
+}