summaryrefslogtreecommitdiffstats
path: root/keyboards/keebio/rorschach/rev1/rev1.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/keebio/rorschach/rev1/rev1.c')
-rw-r--r--keyboards/keebio/rorschach/rev1/rev1.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/keyboards/keebio/rorschach/rev1/rev1.c b/keyboards/keebio/rorschach/rev1/rev1.c
new file mode 100644
index 000000000..cd7f935ca
--- /dev/null
+++ b/keyboards/keebio/rorschach/rev1/rev1.c
@@ -0,0 +1,14 @@
+#include "rev1.h"
+
+void matrix_init_kb(void) {
+
+ // // green led on
+ // DDRD |= (1<<5);
+ // PORTD &= ~(1<<5);
+
+ // // orange led on
+ // DDRB |= (1<<0);
+ // PORTB &= ~(1<<0);
+
+ matrix_init_user();
+};