aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/nightly_boards/alter/rev1/rev1.c
diff options
context:
space:
mode:
authorNightlyBoards <65656486+NightlyBoards@users.noreply.github.com>2020-07-17 23:46:11 +0800
committerGitHub <noreply@github.com>2020-07-17 16:46:11 +0100
commit412c6bf44785e2312821a484a7cd36ce1ec6361a (patch)
treea5a7972ea519a10bf4430dc054aa176ba6bc9eef /keyboards/nightly_boards/alter/rev1/rev1.c
parent9aa953ecb476b952e9cb16a1812e9e1aef88b8dd (diff)
downloadfirmware-412c6bf44785e2312821a484a7cd36ce1ec6361a.tar.gz
firmware-412c6bf44785e2312821a484a7cd36ce1ec6361a.tar.bz2
firmware-412c6bf44785e2312821a484a7cd36ce1ec6361a.zip
Add Alter Keyboard (#9579)
* Create Alter folder * Revert "Create Alter folder" This reverts commit 361103b821dbb22957b66cdedb0d11f996def71c. * Add Alter keyboard * Fixed keymap.c * Fixed another issue on the keymap.c * Updated the files based on the comments * Edited default keymap and enabled rgbanimations on config.h * Updated the info.json
Diffstat (limited to 'keyboards/nightly_boards/alter/rev1/rev1.c')
-rw-r--r--keyboards/nightly_boards/alter/rev1/rev1.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/keyboards/nightly_boards/alter/rev1/rev1.c b/keyboards/nightly_boards/alter/rev1/rev1.c
new file mode 100644
index 000000000..df3dd6aed
--- /dev/null
+++ b/keyboards/nightly_boards/alter/rev1/rev1.c
@@ -0,0 +1,37 @@
+/* Copyright 2020 Neil Brian Ramirez
+ *
+ * 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 "rev1.h"
+
+void keyboard_pre_init_kb(void) {
+ led_init_ports();
+ keyboard_pre_init_user();
+}
+
+void led_init_ports(void) {
+ setPinOutput(D7);
+ setPinOutput(D6);
+ setPinOutput(B4);
+}
+
+bool led_update_kb(led_t led_state) {
+ if (led_update_user(led_state)) {
+ writePin(D7, led_state.num_lock);
+ writePin(D6, led_state.caps_lock);
+ writePin(B4, led_state.scroll_lock);
+ }
+ return true;
+}