summaryrefslogtreecommitdiff
path: root/keyboards/glenpickle/chimera_ortho_plus/chimera_ortho_plus.c
diff options
context:
space:
mode:
authorpeepeetee <43021794+peepeetee@users.noreply.github.com>2022-02-01 03:47:38 +0800
committerGitHub <noreply@github.com>2022-01-31 11:47:38 -0800
commit3fefaf7f6b99aafe691a9024db4780684a588e4a (patch)
tree21145f7fe6804833211c2cd60aabfdb43a44c54d /keyboards/glenpickle/chimera_ortho_plus/chimera_ortho_plus.c
parent6cb0e8924ba258e112174b1dac36c88d16fbc560 (diff)
[Keyboard] move @GlenPickle 's chimera* boards into a folder (#16072)
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();
+}