summaryrefslogtreecommitdiff
path: root/keyboards/eek/eek.c
diff options
context:
space:
mode:
authorJames Smith <bronzegears@gmail.com>2020-12-07 14:07:25 -0500
committerGitHub <noreply@github.com>2020-12-07 19:07:25 +0000
commit9346bd6f805eb4229d58169ee0508acdcd8f666b (patch)
tree2edf6c8b6e0778737e3f9d8a11483d0a834521db /keyboards/eek/eek.c
parenta5a1f860c0ddab56500a36a819f9c6b77f02f576 (diff)
Eek! keyboard firmware merge into QMK (#11020)
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Erovia <Erovia@users.noreply.github.com>
Diffstat (limited to 'keyboards/eek/eek.c')
-rw-r--r--keyboards/eek/eek.c55
1 files changed, 55 insertions, 0 deletions
diff --git a/keyboards/eek/eek.c b/keyboards/eek/eek.c
new file mode 100644
index 0000000000..372956257a
--- /dev/null
+++ b/keyboards/eek/eek.c
@@ -0,0 +1,55 @@
+/* Copyright 2020 klackygears
+ *
+ * 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 "eek.h"
+
+#ifdef RGB_MATRIX_ENABLE
+
+ // Logical Layout
+ // Columns
+ // 0 1 2 3 4
+ // ROWS
+ // 4 3 2 1 0 0
+ // 5 6 7 8 9 1
+ // 14 13 12 11 10 2
+ // 15 16 17 3
+
+ // Logical Layout v1.3
+ // Columns
+ // 0 1 2 3 4 5 6 7 8 9
+ // ROWS
+ // 0 1 2 3 4 5 6 7 8 9 0
+ // 19 18 17 16 15 14 13 12 11 10 1
+ // 20 21 22 23 24 25 26 27 28 29 2
+ // 35 34 33 32 31 30 3
+
+
+led_config_t g_led_config = { {
+ { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 },
+ { 19, 18, 17, 16, 15, 14, 13, 12, 11, 10 },
+ { 20, 21, 22, 23, 24, 25, 26, 27, 28, 29 },
+ { NO_LED, NO_LED, 35, 34, 33, 32, 31, 30, NO_LED, NO_LED }
+}, {
+ { 31, 0 }, { 46, 0 }, { 62, 0 }, { 77, 7 }, { 93, 13 }, { 131, 13 }, { 147, 7 }, { 162, 0 }, { 178, 0 }, { 193, 0 },
+ { 201, 10 }, { 185, 10 }, { 170, 10 }, { 154, 17 }, { 139, 24 }, { 85, 24 }, { 70, 17 }, { 54, 10 }, { 39, 10 }, { 23, 10 },
+ { 15, 20 }, { 31, 20 }, { 46, 20 }, { 62, 27 }, { 77, 34 }, { 147, 34 }, { 162, 27 }, { 178, 20 }, { 193, 20 }, { 209, 20 },
+ { 185, 34 }, { 170, 37 }, { 154, 44 }, { 70, 44 }, { 54, 37 }, { 39, 34 },
+}, {
+ 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
+ 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
+ 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
+ 1, 1, 1, 1, 1, 1,
+} };
+#endif