summaryrefslogtreecommitdiff
path: root/keyboards/unicomp/classic_ultracl_post_2013/overnumpad_1xb/overnumpad_1xb.c
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2021-09-21 21:09:29 +0000
committerQMK Bot <hello@qmk.fm>2021-09-21 21:09:29 +0000
commit88faffb12c305c9b051c2b452b131062711ea258 (patch)
treed13529cdd273456a2c24790a6197f67927b2fdfb /keyboards/unicomp/classic_ultracl_post_2013/overnumpad_1xb/overnumpad_1xb.c
parente5e66b6b777941f8fb636106a282f7e659585355 (diff)
parent376968ade4e102f7a526252599755af4c16dd525 (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'keyboards/unicomp/classic_ultracl_post_2013/overnumpad_1xb/overnumpad_1xb.c')
-rw-r--r--keyboards/unicomp/classic_ultracl_post_2013/overnumpad_1xb/overnumpad_1xb.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/keyboards/unicomp/classic_ultracl_post_2013/overnumpad_1xb/overnumpad_1xb.c b/keyboards/unicomp/classic_ultracl_post_2013/overnumpad_1xb/overnumpad_1xb.c
new file mode 100644
index 0000000000..c4229ef997
--- /dev/null
+++ b/keyboards/unicomp/classic_ultracl_post_2013/overnumpad_1xb/overnumpad_1xb.c
@@ -0,0 +1,28 @@
+/* Copyright 2020 Purdea Andrei
+ *
+ * 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 "overnumpad_1xb.h"
+
+void keyboard_post_init_kb(void)
+{
+ // Solenoid enable:
+ setPinOutput(C13);
+ writePin(C13, 1);
+
+ //debug_enable=true;
+ //debug_matrix=true;
+}
+