aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/lattice60/lattice60.c
diff options
context:
space:
mode:
authorEthan Durrant <5387347+emdarcher@users.noreply.github.com>2020-04-03 14:37:31 -0600
committerGitHub <noreply@github.com>2020-04-03 13:37:31 -0700
commit6e8876be39f829b0327f567d673b23be0f4f28c6 (patch)
treeb874ca4bd6723808c88777b9f41839c8135ccf0f /keyboards/lattice60/lattice60.c
parent0bb2924670918271c35088af23089415653bac1b (diff)
downloadfirmware-6e8876be39f829b0327f567d673b23be0f4f28c6.tar.gz
firmware-6e8876be39f829b0327f567d673b23be0f4f28c6.tar.bz2
firmware-6e8876be39f829b0327f567d673b23be0f4f28c6.zip
[Keyboard] Lattice60 (#8603)
* created initial files for the lattice60 * modifying the keymaps and config * keymap edits and docs * modifying docs and added personal keymap * added pic and website to readme * added layout image for default keymap * updating layout pictures * minor formatting edit * file cleanup * trying to prevent errors with usbconfig * removed usbconfig.h * cleaning up comments * switched to use community hhkb layout
Diffstat (limited to 'keyboards/lattice60/lattice60.c')
-rw-r--r--keyboards/lattice60/lattice60.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/keyboards/lattice60/lattice60.c b/keyboards/lattice60/lattice60.c
new file mode 100644
index 000000000..6cc0ea42f
--- /dev/null
+++ b/keyboards/lattice60/lattice60.c
@@ -0,0 +1,37 @@
+/* Copyright 2019 Ethan Durrant (emdarcher)
+ *
+ * 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 "lattice60.h"
+
+#define LED1_PIN C4
+#define LED2_PIN C5
+
+void keyboard_pre_init_kb(void){
+ //init the LED pins as outputs
+ setPinOutput(LED1_PIN);
+ setPinOutput(LED2_PIN);
+ //call any user initialization code
+ keyboard_pre_init_user();
+}
+
+bool led_update_kb(led_t led_state) {
+ bool res = led_update_user(led_state);
+ if(res){
+ //write the CAPS LOCK state on LED1
+ writePin(LED1_PIN, led_state.caps_lock);
+ }
+ return res;
+}