summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitris Mantzouranis <d3xter93@gmail.com>2022-01-08 13:30:11 +0200
committerDimitris Mantzouranis <d3xter93@gmail.com>2022-01-08 13:30:11 +0200
commite0dfe8e24cb4ac3e069ebe3601c91a7ca155bb2a (patch)
tree9358639fa2c333cc43265759fc1d5b8e16d57228
parentdb1a0f9910e83b1c1dc4c135038e5d998a5cab08 (diff)
sn32 keyboards: add akko 3061_rgb
-rw-r--r--keyboards/akko/3061_rgb/3061_rgb.h36
-rw-r--r--keyboards/akko/3061_rgb/config.h54
-rw-r--r--keyboards/akko/3061_rgb/config_led.c26
-rw-r--r--keyboards/akko/3061_rgb/config_led.h31
-rw-r--r--keyboards/akko/3061_rgb/info.json72
-rw-r--r--keyboards/akko/3061_rgb/keymaps/default/keymap.c95
-rw-r--r--keyboards/akko/3061_rgb/keymaps/default/readme.md3
-rw-r--r--keyboards/akko/3061_rgb/keymaps/horrortroll/config.h20
-rw-r--r--keyboards/akko/3061_rgb/keymaps/horrortroll/keymap.c100
-rw-r--r--keyboards/akko/3061_rgb/keymaps/horrortroll/keymap_stuff.h212
-rw-r--r--keyboards/akko/3061_rgb/keymaps/horrortroll/led/cool_diagonal.c6
-rw-r--r--keyboards/akko/3061_rgb/keymaps/horrortroll/led/custom_gradient.c58
-rw-r--r--keyboards/akko/3061_rgb/keymaps/horrortroll/led/diagonal.c6
-rw-r--r--keyboards/akko/3061_rgb/keymaps/horrortroll/led/kitt.c52
-rw-r--r--keyboards/akko/3061_rgb/keymaps/horrortroll/led/rainbow_reactive_simple/rainbow_reactive_simple.c9
-rw-r--r--keyboards/akko/3061_rgb/keymaps/horrortroll/led/rainbow_reactive_simple/rainbow_reactive_simple.h29
-rw-r--r--keyboards/akko/3061_rgb/keymaps/horrortroll/led/random_breath_rainbow.c38
-rw-r--r--keyboards/akko/3061_rgb/keymaps/horrortroll/readme.md13
-rw-r--r--keyboards/akko/3061_rgb/keymaps/horrortroll/rgb_matrix_user.inc17
-rw-r--r--keyboards/akko/3061_rgb/keymaps/horrortroll/rules.mk6
-rw-r--r--keyboards/akko/3061_rgb/keymaps/via/config.h20
-rw-r--r--keyboards/akko/3061_rgb/keymaps/via/keymap.c95
-rw-r--r--keyboards/akko/3061_rgb/keymaps/via/readme.md3
-rw-r--r--keyboards/akko/3061_rgb/keymaps/via/rules.mk3
-rw-r--r--keyboards/akko/3061_rgb/readme.md13
-rw-r--r--keyboards/akko/3061_rgb/rules.mk32
26 files changed, 1049 insertions, 0 deletions
diff --git a/keyboards/akko/3061_rgb/3061_rgb.h b/keyboards/akko/3061_rgb/3061_rgb.h
new file mode 100644
index 000000000..ee563c89b
--- /dev/null
+++ b/keyboards/akko/3061_rgb/3061_rgb.h
@@ -0,0 +1,36 @@
+/* Copyright 2021 HorrorTroll
+ *
+ * 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/>.
+ */
+
+#pragma once
+
+#include "quantum.h"
+
+#define XXX KC_NO
+
+#define LAYOUT_60_ansi( \
+ K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K10, K11, K12, K13, \
+ K14, K15, K16, K17, K18, K19, K20, K21, K22, K23, K24, K25, K26, K27, \
+ K28, K29, K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K40, \
+ K41, K42, K43, K44, K45, K46, K47, K48, K49, K50, K51, K52, \
+ K53, K54, K55, K56, K57, K58, K59, K60 \
+)\
+{\
+ { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K10, K11, K12, K13 }, \
+ { K14, K15, K16, K17, K18, K19, K20, K21, K22, K23, K24, K25, K26, K27 }, \
+ { K28, K29, K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, XXX, K40 }, \
+ { K41, XXX, K42, K43, K44, K45, K46, K47, K48, K49, K50, K51, XXX, K52 }, \
+ { K53, K54, K55, XXX, XXX, XXX, K56, XXX, XXX, XXX, K57, K58, K59, K60 } \
+}
diff --git a/keyboards/akko/3061_rgb/config.h b/keyboards/akko/3061_rgb/config.h
new file mode 100644
index 000000000..367760cc8
--- /dev/null
+++ b/keyboards/akko/3061_rgb/config.h
@@ -0,0 +1,54 @@
+/* Copyright 2020 Adam Honse <calcprogrammer1@gmail.com>
+ *
+ * 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/>.
+ */
+
+#pragma once
+
+#include "config_common.h"
+#include "config_led.h"
+
+/* USB Device descriptor parameter */
+#define VENDOR_ID 0x320F
+#define PRODUCT_ID 0x5025
+#define DEVICE_VER 0x0001
+
+#define MANUFACTURER Akko
+#define PRODUCT 3061 RGB
+#define DESCRIPTION 3061 World Tour Tokyo R2 RGB
+
+/* key matrix size */
+#define MATRIX_ROWS 5
+#define MATRIX_COLS 14
+
+/* Key matrix pin 0 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13 */
+#define MATRIX_ROW_PINS { D10, D9, D8, D7, D6 }
+#define MATRIX_COL_PINS { A8, A9, A10, A11, A12, A13, A14, A15, B0, B1, B2, B3, B4, B5 }
+
+/* Direction of diode (COL2ROW or ROW2COL) */
+#define DIODE_DIRECTION COL2ROW
+
+/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
+#define DEBOUNCE 5
+
+/* Forcing to use NKRO instead 6KRO */
+#define FORCE_NKRO
+
+/* Change USB Polling Rate to 1000hz and a larger keys per scan for elite gaming */
+#define USB_POLLING_INTERVAL_MS 1
+#define QMK_KEYS_PER_SCAN 12
+
+/* RGB Matrix config */
+#define RGB_MATRIX_KEYPRESSES
+#define RGB_MATRIX_FRAMEBUFFER_EFFECTS \ No newline at end of file
diff --git a/keyboards/akko/3061_rgb/config_led.c b/keyboards/akko/3061_rgb/config_led.c
new file mode 100644
index 000000000..b2a0ef7f9
--- /dev/null
+++ b/keyboards/akko/3061_rgb/config_led.c
@@ -0,0 +1,26 @@
+#ifdef RGB_MATRIX_ENABLE
+
+#include "rgb_matrix.h"
+#include "config_led.h"
+
+led_config_t g_led_config = { {
+ { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13 },
+ { 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27 },
+ { 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, NO_LED, 40 },
+ { 41, NO_LED, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, NO_LED, 52 },
+ { 53, 54, 55, NO_LED, NO_LED, NO_LED, 56, NO_LED, NO_LED, NO_LED, 57, 58, 59, 60 }
+}, {
+ {0 , 0}, {16 , 0}, {33 , 0}, {49 , 0}, {66 , 0}, {82 , 0}, {99 , 0}, {115, 0}, {132, 0}, {148, 0}, {165, 0}, {181, 0}, {198, 0}, {214, 0},
+ {3 , 16}, {23 , 16}, {39 , 16}, {56 , 16}, {72 , 16}, {88 , 16}, {105, 16}, {121, 16}, {138, 16}, {154, 16}, {171, 16}, {187, 16}, {204, 16}, {220, 16},
+ {5 , 32}, {26 , 32}, {42 , 32}, {59 , 32}, {75 , 32}, {92 , 32}, {108, 32}, {124, 32}, {141, 32}, {157, 32}, {174, 32}, {190, 32}, {214, 32},
+ {8 , 48}, {28 , 48}, {48 , 48}, {65 , 48}, {81 , 48}, {98 , 48}, {114, 48}, {131, 48}, {147, 48}, {164, 48}, {180, 48}, {201, 48},
+ {2 , 64}, {12 , 64}, {28 , 64}, {100, 64}, {163, 64}, {182, 64}, {205, 64}, {221, 64},
+}, {
+ 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1,
+ 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
+ 8, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1,
+ 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1,
+ 1, 1, 1, 4, 1, 1, 1, 1,
+} };
+
+#endif
diff --git a/keyboards/akko/3061_rgb/config_led.h b/keyboards/akko/3061_rgb/config_led.h
new file mode 100644
index 000000000..da648afcd
--- /dev/null
+++ b/keyboards/akko/3061_rgb/config_led.h
@@ -0,0 +1,31 @@
+/*
+Copyright 2020 Adam Honse <calcprogrammer1@gmail.com>
+
+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/>.
+*/
+
+#pragma once
+
+/* RGB matrix size */
+#define LED_MATRIX_COLS MATRIX_COLS
+#define LED_MATRIX_ROWS MATRIX_ROWS
+#define LED_MATRIX_ROW_CHANNELS 3
+#define LED_MATRIX_ROWS_HW (LED_MATRIX_ROWS * LED_MATRIX_ROW_CHANNELS)
+
+/* RGB matrix pin 0 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13 14 */
+#define LED_MATRIX_COL_PINS MATRIX_COL_PINS
+#define LED_MATRIX_ROW_PINS { B15, B14, B13, C1, C0, C15, C5, C4, C3, C8, C7, C6, C11, C10, C9 }
+
+/* RGB led number */
+#define DRIVER_LED_TOTAL (61)
diff --git a/keyboards/akko/3061_rgb/info.json b/keyboards/akko/3061_rgb/info.json
new file mode 100644
index 000000000..3ae5a08a3
--- /dev/null
+++ b/keyboards/akko/3061_rgb/info.json
@@ -0,0 +1,72 @@
+{
+ "keyboard_name": "Akko 3061 World Tour Tokyo R2",
+ "url": "https://akkogear.com.vn/san-pham/ban-phim-co-akko-3061-world-tour-tokyo-r2-rgb-gateron-switch/",
+ "maintainer": "qmk",
+ "layouts": {
+ "LAYOUT_60_ansi": {
+ "layout": [
+ {"label":"A8", "x":0, "y":0},
+ {"label":"A9", "x":1, "y":0},
+ {"label":"A10", "x":2, "y":0},
+ {"label":"A11", "x":3, "y":0},
+ {"label":"A12", "x":4, "y":0},
+ {"label":"A13", "x":5, "y":0},
+ {"label":"A14", "x":6, "y":0},
+ {"label":"A15", "x":7, "y":0},
+ {"label":"B0", "x":8, "y":0},
+ {"label":"B1", "x":9, "y":0},
+ {"label":"B2", "x":10, "y":0},
+ {"label":"B3", "x":11, "y":0},
+ {"label":"B4", "x":12, "y":0},
+ {"label":"B5", "x":13, "y":0, "w":2},
+ {"label":"A8", "x":0, "y":1, "w":1.5},
+ {"label":"A9", "x":1.5, "y":1},
+ {"label":"A10", "x":2.5, "y":1},
+ {"label":"A11", "x":3.5, "y":1},
+ {"label":"A12", "x":4.5, "y":1},
+ {"label":"A13", "x":5.5, "y":1},
+ {"label":"A14", "x":6.5, "y":1},
+ {"label":"A15", "x":7.5, "y":1},
+ {"label":"B0", "x":8.5, "y":1},
+ {"label":"B1", "x":9.5, "y":1},
+ {"label":"B2", "x":10.5, "y":1},
+ {"label":"B3", "x":11.5, "y":1},
+ {"label":"B4", "x":12.5, "y":1},
+ {"label":"B5", "x":13.5, "y":1, "w":1.5},
+ {"label":"A8", "x":0, "y":2, "w":1.75},
+ {"label":"A9", "x":1.75, "y":2},
+ {"label":"A10", "x":2.75, "y":2},
+ {"label":"A11", "x":3.75, "y":2},
+ {"label":"A12", "x":4.75, "y":2},
+ {"label":"A13", "x":5.75, "y":2},
+ {"label":"A14", "x":6.75, "y":2},
+ {"label":"A15", "x":7.75, "y":2},
+ {"label":"B0", "x":8.75, "y":2},
+ {"label":"B1", "x":9.75, "y":2},
+ {"label":"B2", "x":10.75, "y":2},
+ {"label":"B3", "x":11.75, "y":2},
+ {"label":"B5", "x":12.75, "y":2, "w":2.25},
+ {"label":"A8", "x":0, "y":3, "w":2.25},
+ {"label":"A10", "x":2.25, "y":3},
+ {"label":"A11", "x":3.25, "y":3},
+ {"label":"A12", "x":4.25, "y":3},
+ {"label":"A13", "x":5.25, "y":3},
+ {"label":"A14", "x":6.25, "y":3},
+ {"label":"A15", "x":7.25, "y":3},
+ {"label":"B0", "x":8.25, "y":3},
+ {"label":"B1", "x":9.25, "y":3},
+ {"label":"B2", "x":10.25, "y":3},
+ {"label":"B3", "x":11.25, "y":3},
+ {"label":"B5", "x":12.25, "y":3, "w":2.75},
+ {"label":"A8", "x":0, "y":4, "w":1.25},
+ {"label":"A9", "x":1.25, "y":4, "w":1.25},
+ {"label":"A10", "x":2.5, "y":4, "w":1.25},
+ {"label":"A14", "x":3.75, "y":4, "w":6.25},
+ {"label":"B2", "x":10, "y":4, "w":1.25},
+ {"label":"B3", "x":11.25, "y":4, "w":1.25},
+ {"label":"B4", "x":12.5, "y":4, "w":1.25},
+ {"label":"B5", "x":13.75, "y":4, "w":1.25}
+ ]
+ }
+ }
+} \ No newline at end of file
diff --git a/keyboards/akko/3061_rgb/keymaps/default/keymap.c b/keyboards/akko/3061_rgb/keymaps/default/keymap.c
new file mode 100644
index 000000000..8eb13e85c
--- /dev/null
+++ b/keyboards/akko/3061_rgb/keymaps/default/keymap.c
@@ -0,0 +1,95 @@
+/*
+Copyright 2021 HorrorTroll
+
+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 QMK_KEYBOARD_H
+
+#include "3061_rgb.h"
+
+// Each layer gets a name for readability, which is then used in the keymap matrix below.
+// The underscores don't mean anything - you can have a layer called STUFF or any other name.
+// Layer names don't all need to be of the same length, obviously, and you can also skip them
+// entirely and just use numbers.
+
+enum layer_names {
+ _BASE = 0,
+ _FN = 1
+};
+
+// enum layer_keycodes { };
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+
+/*
+ ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐
+ │Esc│ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ = │ Bakspc│
+ ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤
+ │ Tab │ q │ w │ e │ r │ t │ y │ u │ i │ o │ p │ [ │ ] │ \ │
+ ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤
+ │ Caps │ a │ s │ d │ f │ g │ h │ j │ k │ l │ ; │ ' │ Enter │
+ ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤
+ │ LShift │ z │ x │ c │ v │ b │ n │ m │ , │ . │ / │ RShift │
+ ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤
+ │LCrl│GUI │LAlt│ Space │RAlt│GUI │ Fn │RCrl│
+ └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘
+ ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐
+ │ ~ │ ! │ @ │ # │ $ │ % │ ^ │ & │ * │ ( │ ) │ _ │ + │ │
+ ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤
+ │ │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ { │ } │ | │
+ ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤
+ │ Caps │ A │ S │ D │ F │ G │ H │ J │ K │ L │ : │ " │ │
+ ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤
+ │ LShift │ Z │ X │ C │ V │ B │ N │ M │ < │ > │ ? │ RShift │
+ ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤
+ │ │ │ │ │ │ │ │ │
+ └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘
+*/
+ /* Row: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 */
+ [_BASE] = LAYOUT_60_ansi(
+ KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC,
+ KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS,
+ KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT,
+ KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT,
+ KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, MO(_FN), KC_RCTL
+ ),
+
+/*
+ ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐
+ │ ` │F1 │F2 │F3 │F4 │F5 │F6 │F7 │F8 │F9 │F10│F11│F12│ Delete│
+ ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤
+ │ │ │ ↑ │ │ │ │ │ │Ins│ │PSc│Vad│Vai│ Hui │
+ ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤
+ │ │ ← │ ↓ │ → │ │ │ │ │ │Tog│Spd│Spi│RGB_Mode│
+ ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤
+ │ │ │ │Cal│ │ │ │Mut│VoD│VoU│ │ │
+ ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤
+ │ │ │ │ │ │ Fn │ │ │
+ └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘
+*/
+ /* Row: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 */
+ [_FN] = LAYOUT_60_ansi(
+ KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_DEL,
+ RESET, _______, KC_UP, _______, _______, _______, _______, _______, KC_INS, _______, KC_PSCR, RGB_VAD, RGB_VAI, RGB_HUI,
+ _______, KC_LEFT, KC_DOWN, KC_RIGHT, _______, _______, _______, _______, _______, RGB_TOG, RGB_SPD, RGB_SPI, RGB_MOD,
+ _______, _______, _______, KC_CALC, _______, _______, _______, KC_MUTE, KC_VOLD, KC_VOLU, _______, _______,
+ _______, _______, _______, _______, _______, _______, _______, _______
+ ),
+};
+
+void rgb_matrix_indicators_user(void) {
+ if (host_keyboard_led_state().caps_lock) {
+ rgb_matrix_set_color(28, 217, 71, 115); // assuming caps lock is at led #40
+ }
+} \ No newline at end of file
diff --git a/keyboards/akko/3061_rgb/keymaps/default/readme.md b/keyboards/akko/3061_rgb/keymaps/default/readme.md
new file mode 100644
index 000000000..9c67fce1f
--- /dev/null
+++ b/keyboards/akko/3061_rgb/keymaps/default/readme.md
@@ -0,0 +1,3 @@
+# Default Layout
+
+Keymap is default 61 qwerty 60% layout \ No newline at end of file
diff --git a/keyboards/akko/3061_rgb/keymaps/horrortroll/config.h b/keyboards/akko/3061_rgb/keymaps/horrortroll/config.h
new file mode 100644
index 000000000..a6f4524c8
--- /dev/null
+++ b/keyboards/akko/3061_rgb/keymaps/horrortroll/config.h
@@ -0,0 +1,20 @@
+/*
+Copyright 2021 HorrorTroll
+
+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/>.
+*/
+
+#pragma once
+
+#define DYNAMIC_KEYMAP_LAYER_COUNT 3
diff --git a/keyboards/akko/3061_rgb/keymaps/horrortroll/keymap.c b/keyboards/akko/3061_rgb/keymaps/horrortroll/keymap.c
new file mode 100644
index 000000000..d9bc643cc
--- /dev/null
+++ b/keyboards/akko/3061_rgb/keymaps/horrortroll/keymap.c
@@ -0,0 +1,100 @@
+/*
+Copyright 2021 HorrorTroll
+
+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 QMK_KEYBOARD_H
+
+#include "3061_rgb.h"
+#include "keymap_stuff.h"
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+
+/*
+ ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐
+ │Esc│ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ = │ Bakspc│
+ ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤
+ │ Tab │ q │ w │ e │ r │ t │ y │ u │ i │ o │ p │ [ │ ] │ \ │
+ ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤
+ │ Caps │ a │ s │ d │ f │ g │ h │ j │ k │ l │ ; │ ' │ Enter │
+ ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤
+ │ LShift │ z │ x │ c │ v │ b │ n │ m │ , │ . │ / │ RShift │
+ ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤
+ │LCrl│GUI │LAlt│ Space │RAlt│GUI │ Fn │RCrl│
+ └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘
+ ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐
+ │ ~ │ ! │ @ │ # │ $ │ % │ ^ │ & │ * │ ( │ ) │ _ │ + │ │
+ ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤
+ │ │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ { │ } │ | │
+ ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤
+ │ Caps │ A │ S │ D │ F │ G │ H │ J │ K │ L │ : │ " │ │
+ ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤
+ │ LShift │ Z │ X │ C │ V │ B │ N │ M │ < │ > │ ? │ RShift │
+ ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤
+ │ │ │ │ │ │ │ │ │
+ └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘
+*/
+ /* Row: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 */
+ [_BASE] = LAYOUT_60_ansi(
+ KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC,
+ KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS,
+ KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT,
+ KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT,
+ KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, MO(_FN), KC_RCTL
+ ),
+
+/*
+ ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐
+ │ ` │F1 │F2 │F3 │F4 │F5 │F6 │F7 │F8 │F9 │F10│F11│F12│ Delete│
+ ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤
+ │ │ │ ↑ │ │ │ │ │ │ │ │ │Ins│Hom│ PgUp│
+ ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤
+ │ │ ← │ ↓ │ → │ │ │ │ │ │ │ │End│ PgDn │
+ ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤
+ │ │ │ │ │ │ │ │ │ │ │Prt│ Pause │
+ ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤
+ │ │ │ │ │ │ Rn │ Fn │ │
+ └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘
+*/
+ /* Row: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 */
+ [_FN] = LAYOUT_60_ansi(
+ KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_DEL,
+ _______, _______, KC_UP, _______, _______, _______, _______, _______, _______, _______, _______, KC_INS, KC_HOME, KC_PGUP,
+ _______, KC_LEFT, KC_DOWN, KC_RIGHT, _______, _______, _______, _______, _______, _______, _______, KC_END, KC_PGDN,
+ _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_PSCR, KC_PAUSE,
+ _______, _______, _______, _______, _______, MO(_RN), _______, _______
+ ),
+
+/*
+ ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐
+ │Rst│MeP│VoD│VoU│Mut│Stp│Prv│Ply│Nxt│Mai│Hom│Cal│Sch│RGB_Tog│
+ ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤
+ │NKRO │1Hd│1Hi│1Sd│1Si│1Vd│1Vi│ │Hud│Hui│ │Rod│Mod│Cycle│
+ ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤
+ │ │2Hd│2Hi│2Sd│2Si│2Vd│2Vi│ │Vad│Vai│ │ │ │
+ ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤
+ │ │Pre│Ref│Flp│ │ │ │Spd│Spi│ │ │ │
+ ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤
+ │ │ │ │ │ │ Rn │ │ │
+ └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘
+*/
+ /* Row: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 */
+ [_RN] = LAYOUT_60_ansi(
+ RESET, KC_MSEL, KC_VOLD, KC_VOLU, KC_MUTE, KC_MSTP, KC_MPRV, KC_MPLY, KC_MNXT, KC_MAIL, KC_WHOM, KC_CALC, KC_WSCH, RGB_TOG,
+ NK_TOGG, G1_HUD, G1_HUI, G1_SAD, G1_SAI, G1_VAD, G1_VAI, _______, RGB_HUD, RGB_HUI, _______, RGB_RMOD, RGB_MOD, RGB_C_E,
+ _______, G2_HUD, G2_HUI, G2_SAD, G2_SAI, G2_VAD, G2_VAI, _______, RGB_VAD, RGB_VAI, _______, _______, _______,
+ _______, G_PRE, REF_G, G_FLIP, _______, _______, _______, RGB_SPD, RGB_SPI, _______, _______, _______,
+ _______, _______, _______, _______, _______, _______, _______, _______
+ ),
+};
diff --git a/keyboards/akko/3061_rgb/keymaps/horrortroll/keymap_stuff.h b/keyboards/akko/3061_rgb/keymaps/horrortroll/keymap_stuff.h
new file mode 100644
index 000000000..8caaaa0f9
--- /dev/null
+++ b/keyboards/akko/3061_rgb/keymaps/horrortroll/keymap_stuff.h
@@ -0,0 +1,212 @@
+// Each layer gets a name for readability, which is then used in the keymap matrix below.
+// The underscores don't mean anything - you can have a layer called STUFF or any other name.
+// Layer names don't all need to be of the same length, obviously, and you can also skip them
+// entirely and just use numbers.
+
+enum layer_names {
+ _BASE = 0,
+ _FN = 1,
+ _RN = 2
+};
+
+// For CUSTOM_GRADIENT
+HSV gradient_0 = {205, 250, 255};
+HSV gradient_100 = {140, 215, 125};
+bool reflected_gradient = false;
+uint8_t gp_i = 0;
+
+typedef struct {
+ HSV gradient_0;
+ HSV gradient_1;
+ bool reflected;
+} CUSTOM_PRESETS;
+
+enum layer_keycodes {
+ //Custom Gradient control keycode
+ G1_HUI = SAFE_RANGE, //Custom gradient color 1 hue increase
+ G1_HUD, //Custom gradient color 1 hue decrease
+ G1_SAI, //Custom gradient color 1 saturation increase
+ G1_SAD, //Custom gradient color 1 saturation decrease
+ G1_VAI, //Custom gradient color 1 value increase
+ G1_VAD, //Custom gradient color 1 value decrease
+ G2_HUI, //Custom gradient color 2 hue increase
+ G2_HUD, //Custom gradient color 2 hue decrease
+ G2_SAI, //Custom gradient color 2 saturation increase
+ G2_SAD, //Custom gradient color 2 saturation decrease
+ G2_VAI, //Custom gradient color 2 value increase
+ G2_VAD, //Custom gradient color 2 value decrease
+ G_PRE, //Gradient presets
+ REF_G, //Toggle between linear and reflected gradient
+ G_FLIP, //Flip the gradient colors
+
+ //Custom led effect keycode
+ RGB_C_E, //Cycle user effect
+};
+
+bool process_record_user(uint16_t keycode, keyrecord_t *record) {
+ uint8_t color_adj_step = 5;
+
+ CUSTOM_PRESETS gradient_presets[] = {
+ {{41 , 255, 255}, {233, 245, 255}, false },
+ {{45 , 245, 155}, {160, 255, 80}, false },
+ {{173, 245, 40}, {41 , 255, 205}, true },
+ {{32 , 255, 165}, {217, 185, 70}, false },
+ {{240, 255, 145}, {115, 255, 245}, true },
+ {{118, 255, 255}, {242, 255, 255}, false },
+ {{212, 0 , 0}, {223, 235, 165}, true },
+ {{205, 250, 255}, {140, 215, 125}, false },
+ };
+
+ uint8_t gp_length = sizeof(gradient_presets)/sizeof(gradient_presets[0]);
+
+ switch (keycode) {
+ case G1_HUI:
+ if (record->event.pressed) {
+ gradient_0.h += color_adj_step;
+ dprintf("Gradient 0 HSV: %d, %d, %d\n", gradient_0.h, gradient_0.s, gradient_0.v);
+ }
+ return false;
+ case G1_HUD:
+ if (record->event.pressed) {
+ gradient_0.h -= color_adj_step;
+ dprintf("Gradient 0 HSV: %d, %d, %d\n", gradient_0.h, gradient_0.s, gradient_0.v);
+ }
+ return false;
+ case G1_SAI:
+ if (record->event.pressed) {
+ gradient_0.s = (gradient_0.s + color_adj_step * 2 <= 255) ? gradient_0.s + color_adj_step * 2 : 255;
+ dprintf("Gradient 0 HSV: %d, %d, %d\n", gradient_0.h, gradient_0.s, gradient_0.v);
+ }
+ return false;
+ case G1_SAD:
+ if (record->event.pressed) {
+ gradient_0.s = (gradient_0.s - color_adj_step * 2 >= 0) ? gradient_0.s - color_adj_step * 2 : 0;
+ dprintf("Gradient 0 HSV: %d, %d, %d\n", gradient_0.h, gradient_0.s, gradient_0.v);
+ }
+ return false;
+ case G1_VAI:
+ if (record->event.pressed) {
+ gradient_0.v = (gradient_0.v + color_adj_step * 2 <= 255) ? gradient_0.v + color_adj_step * 2 : 255;
+ dprintf("Gradient 0 HSV: %d, %d, %d\n", gradient_0.h, gradient_0.s, gradient_0.v);
+ }
+ return false;
+ case G1_VAD:
+ if (record->event.pressed) {
+ gradient_0.v = (gradient_0.v - color_adj_step * 2 >= 0) ? gradient_0.v - color_adj_step * 2 : 0;
+ dprintf("Gradient 0 HSV: %d, %d, %d\n", gradient_0.h, gradient_0.s, gradient_0.v);
+ }
+ return false;
+ case G2_HUI:
+ if (record->event.pressed) {
+ gradient_100.h += color_adj_step;
+ dprintf("Gradient 100 HSV: %d, %d, %d\n", gradient_100.h, gradient_100.s, gradient_100.v);
+ }
+ return false;
+ case G2_HUD:
+ if (record->event.pressed) {
+ gradient_100.h -= color_adj_step;
+ dprintf("Gradient 100 HSV: %d, %d, %d\n", gradient_100.h, gradient_100.s, gradient_100.v);
+ }
+ return false;
+ case G2_SAI:
+ if (record->event.pressed) {
+ gradient_100.s = (gradient_100.s + color_adj_step * 2 <= 255) ? gradient_100.s + color_adj_step * 2 : 255;
+ dprintf("Gradient 100 HSV: %d, %d, %d\n", gradient_100.h, gradient_100.s, gradient_100.v);
+ }
+ return false;
+ case G2_SAD:
+ if (record->event.pressed) {
+ gradient_100.s = (gradient_100.s - color_adj_step * 2 >= 0) ? gradient_100.s - color_adj_step * 2 : 0;
+ dprintf("Gradient 100 HSV: %d, %d, %d\n", gradient_100.h, gradient_100.s, gradient_100.v);
+ }
+ return false;
+ case G2_VAI:
+ if (record->event.pressed) {
+ gradient_100.v = (gradient_100.v + color_adj_step * 2 <= 255) ? gradient_100.v + color_adj_step * 2 : 255;
+ dprintf("Gradient 100 HSV: %d, %d, %d\n", gradient_100.h, gradient_100.s, gradient_100.v);
+ }
+ return false;
+ case G2_VAD:
+ if (record->event.pressed) {
+ gradient_100.v = (gradient_100.v - color_adj_step * 2 >= 0) ? gradient_100.v - color_adj_step * 2 : 0;
+ dprintf("Gradient 100 HSV: %d, %d, %d\n", gradient_100.h, gradient_100.s, gradient_100.v);
+ }
+ return false;
+ case G_PRE:
+ if (record->event.pressed) {
+ gp_i = (gp_i + gp_length ) % gp_length;
+
+ gradient_0 = gradient_presets[gp_i].gradient_0;
+ gradient_100 = gradient_presets[gp_i].gradient_1;
+ reflected_gradient = gradient_presets[gp_i].reflected;
+
+ gp_i += 1;
+ }
+ return false;
+ case REF_G:
+ if (record->event.pressed) {
+ reflected_gradient = !reflected_gradient;
+ }
+ return false;
+ case G_FLIP:
+ if (record->event.pressed) {
+ HSV temp_color = gradient_0;
+ gradient_0 = gradient_100;
+ gradient_100 = temp_color;
+ }
+ return false;
+ case RGB_C_E:
+ if (record->event.pressed) {
+ switch (rgb_matrix_get_mode()) {
+ case RGB_MATRIX_CUSTOM_CUSTOM_GRADIENT:
+ rgb_matrix_mode(RGB_MATRIX_CUSTOM_DIAGONAL);
+ return false;
+ case RGB_MATRIX_CUSTOM_DIAGONAL:
+ rgb_matrix_mode(RGB_MATRIX_CUSTOM_COOL_DIAGONAL);
+ return false;
+ case RGB_MATRIX_CUSTOM_COOL_DIAGONAL:
+ rgb_matrix_mode(RGB_MATRIX_CUSTOM_RAINBOW_REACTIVE_SIMPLE);
+ return false;
+ case RGB_MATRIX_CUSTOM_RAINBOW_REACTIVE_SIMPLE:
+ rgb_matrix_mode(RGB_MATRIX_CUSTOM_KITT);
+ return false;
+ case RGB_MATRIX_CUSTOM_KITT:
+ rgb_matrix_mode(RGB_MATRIX_CUSTOM_RANDOM_BREATH_RAINBOW);
+ return false;
+ default:
+ rgb_matrix_mode(RGB_MATRIX_CUSTOM_CUSTOM_GRADIENT);
+ return false;
+ }
+ }
+ return false;
+ }
+ return true;
+}
+
+void rgb_matrix_indicators_user(void) {
+ switch (biton32(layer_state)) {
+ case _FN:
+ rgb_matrix_set_color(14, 0, 0, 0); rgb_matrix_set_color(15, 0, 0, 0); rgb_matrix_set_color(17, 0, 0, 0); rgb_matrix_set_color(18, 0, 0, 0);
+ rgb_matrix_set_color(19, 0, 0, 0); rgb_matrix_set_color(20, 0, 0, 0); rgb_matrix_set_color(21, 0, 0, 0); rgb_matrix_set_color(22, 0, 0, 0);
+ rgb_matrix_set_color(23, 0, 0, 0); rgb_matrix_set_color(24, 0, 0, 0); rgb_matrix_set_color(28, 0, 0, 0); rgb_matrix_set_color(32, 0, 0, 0);
+ rgb_matrix_set_color(33, 0, 0, 0); rgb_matrix_set_color(34, 0, 0, 0); rgb_matrix_set_color(35, 0, 0, 0); rgb_matrix_set_color(36, 0, 0, 0);
+ rgb_matrix_set_color(37, 0, 0, 0); rgb_matrix_set_color(38, 0, 0, 0); rgb_matrix_set_color(41, 0, 0, 0); rgb_matrix_set_color(42, 0, 0, 0);
+ rgb_matrix_set_color(43, 0, 0, 0); rgb_matrix_set_color(44, 0, 0, 0); rgb_matrix_set_color(45, 0, 0, 0); rgb_matrix_set_color(46, 0, 0, 0);
+ rgb_matrix_set_color(47, 0, 0, 0); rgb_matrix_set_color(48, 0, 0, 0); rgb_matrix_set_color(49, 0, 0, 0); rgb_matrix_set_color(50, 0, 0, 0);
+ rgb_matrix_set_color(53, 0, 0, 0); rgb_matrix_set_color(54, 0, 0, 0); rgb_matrix_set_color(55, 0, 0, 0); rgb_matrix_set_color(56, 0, 0, 0);
+ rgb_matrix_set_color(57, 0, 0, 0); rgb_matrix_set_color(58, 0, 0, 0); rgb_matrix_set_color(59, 0, 0, 0); rgb_matrix_set_color(60, 0, 0, 0);
+ break;
+ case _RN:
+ rgb_matrix_set_color(21, 0, 0, 0); rgb_matrix_set_color(24, 0, 0, 0); rgb_matrix_set_color(28, 0, 0, 0); rgb_matrix_set_color(35, 0, 0, 0);
+ rgb_matrix_set_color(38, 0, 0, 0); rgb_matrix_set_color(39, 0, 0, 0); rgb_matrix_set_color(40, 0, 0, 0); rgb_matrix_set_color(41, 0, 0, 0);
+ rgb_matrix_set_color(45, 0, 0, 0); rgb_matrix_set_color(46, 0, 0, 0); rgb_matrix_set_color(47, 0, 0, 0); rgb_matrix_set_color(50, 0, 0, 0);
+ rgb_matrix_set_color(51, 0, 0, 0); rgb_matrix_set_color(52, 0, 0, 0); rgb_matrix_set_color(53, 0, 0, 0); rgb_matrix_set_color(54, 0, 0, 0);
+ rgb_matrix_set_color(55, 0, 0, 0); rgb_matrix_set_color(56, 0, 0, 0); rgb_matrix_set_color(57, 0, 0, 0); rgb_matrix_set_color(58, 0, 0, 0);
+ rgb_matrix_set_color(59, 0, 0, 0); rgb_matrix_set_color(60, 0, 0, 0);
+ break;
+ }
+
+ if (host_keyboard_led_state().caps_lock) {
+ rgb_matrix_set_color(28, 217, 71, 115); // assuming caps lock is at led #40
+ }
+} \ No newline at end of file
diff --git a/keyboards/akko/3061_rgb/keymaps/horrortroll/led/cool_diagonal.c b/keyboards/akko/3061_rgb/keymaps/horrortroll/led/cool_diagonal.c
new file mode 100644
index 000000000..5ed495caf
--- /dev/null
+++ b/keyboards/akko/3061_rgb/keymaps/horrortroll/led/cool_diagonal.c
@@ -0,0 +1,6 @@
+static HSV COOL_DIAGONAL_math(HSV hsv, uint8_t i, uint8_t time) {
+ hsv.h = (g_led_config.point[i].x / 4) - g_led_config.point[i].y - time;
+ return hsv;
+}
+
+bool COOL_DIAGONAL(effect_params_t* params) { return effect_runner_i(params, &COOL_DIAGONAL_math); } \ No newline at end of file
diff --git a/keyboards/akko/3061_rgb/keymaps/horrortroll/led/custom_gradient.c b/keyboards/akko/3061_rgb/keymaps/horrortroll/led/custom_gradient.c
new file mode 100644
index 000000000..753e6c017
--- /dev/null
+++ b/keyboards/akko/3061_rgb/keymaps/horrortroll/led/custom_gradient.c
@@ -0,0 +1,58 @@
+extern HSV gradient_0;
+extern HSV gradient_100;
+extern bool reflected_gradient;
+
+static HSV INTERPOLATE_HSV(float step, HSV gradient_0, HSV gradient_100) {
+ uint8_t cw, ccw;
+ HSV color;
+
+ cw = (gradient_0.h >= gradient_100.h) ? 255 + gradient_100.h - gradient_0.h : gradient_100.h - gradient_0.h; // Hue range is 0 to 255.
+ ccw = (gradient_0.h >= gradient_100.h) ? gradient_0.h - gradient_100.h : 255 + gradient_0.h - gradient_100.h;
+
+ if( cw < ccw ) { // going clockwise
+ color.h = gradient_0.h + (uint8_t)(step * cw);
+ } else { // Going counter clockwise
+ color.h = gradient_0.h - (uint8_t)(step * ccw);
+ }
+
+ color.s = gradient_0.s + step * (gradient_100.s - gradient_0.s);
+
+ // Scale V with global RGB Matrix's V, so users can still control overall brightness with RGB_VAI & RGB_VAD0
+ color.v = round((gradient_0.v + step * (gradient_100.v - gradient_0.v)) * ((float)rgb_matrix_config.hsv.v / 255));
+
+ return color;
+}
+
+static HSV CUSTOM_GRADIENT_math(uint8_t led_x, uint8_t min_x, uint8_t max_x) {
+ float step = (float)led_x / (max_x - min_x);
+ float mid_gradient_pos = 0.5;
+
+ if( reflected_gradient ) {
+ if( step <= mid_gradient_pos ) {
+ return INTERPOLATE_HSV(step * (1/mid_gradient_pos), gradient_0, gradient_100);
+ } else {
+ return INTERPOLATE_HSV((step - mid_gradient_pos) * (1/(1-mid_gradient_pos)), gradient_100, gradient_0);
+ }
+
+ } else {
+ return INTERPOLATE_HSV(step, gradient_0, gradient_100);
+ }
+}
+
+static bool CUSTOM_GRADIENT(effect_params_t* params) {
+ RGB_MATRIX_USE_LIMITS(led_min, led_max);
+
+ uint8_t min_x = 0; // X coordinate of the left-most LED
+ uint8_t max_x = 224; // X coordinate of the right-most LED
+
+ for (uint8_t i = led_min; i < led_max; i++) {
+ RGB_MATRIX_TEST_LED_FLAGS();
+
+ HSV hsv_orig = CUSTOM_GRADIENT_math(g_led_config.point[i].x, min_x, max_x);
+ RGB rgb = hsv_to_rgb(hsv_orig);
+
+ rgb_matrix_set_color(i, rgb.r, rgb.g, rgb.b);
+ }
+
+ return led_max < DRIVER_LED_TOTAL;
+} \ No newline at end of file
diff --git a/keyboards/akko/3061_rgb/keymaps/horrortroll/led/diagonal.c b/keyboards/akko/3061_rgb/keymaps/horrortroll/led/diagonal.c
new file mode 100644
index 000000000..248834bf3
--- /dev/null
+++ b/keyboards/akko/3061_rgb/keymaps/horrortroll/led/diagonal.c
@@ -0,0 +1,6 @@
+static HSV DIAGONAL_math(HSV hsv, uint8_t i, uint8_t time) {
+ hsv.h = g_led_config.point[i].x - g_led_config.point[i].y - time;
+ return hsv;
+}
+
+bool DIAGONAL(effect_params_t* params) { return effect_runner_i(params, &DIAGONAL_math); } \ No newline at end of file
diff --git a/keyboards/akko/3061_rgb/keymaps/horrortroll/led/kitt.c b/keyboards/akko/3061_rgb/keymaps/horrortroll/led/kitt.c
new file mode 100644
index 000000000..d0291bbc0
--- /dev/null
+++ b/keyboards/akko/3061_rgb/keymaps/horrortroll/led/kitt.c
@@ -0,0 +1,52 @@
+// variable for startup animation
+bool BASE_EFFECT_NOT_STARTED_YET = true;
+uint8_t base_effect_startup_counter = 255;
+
+uint8_t led_count = 9;
+uint8_t led_first = 30;
+
+static uint8_t time_to_led(uint8_t time, uint8_t led_behind) {
+ uint16_t led_time = led_count * time;
+ uint16_t step = ((2 * led_count + (led_time / 128)) - led_behind) % (2 * led_count);
+ uint8_t led;
+
+ if (step < led_count) {
+ led = step;
+ } else {
+ led = led_count - 1 - (step - led_count);
+ }
+
+ return led;
+}
+
+static HSV KITT_math(HSV hsv, uint8_t i, uint8_t time) {
+
+ // reset base effect startup
+ if (i == 0) {
+ BASE_EFFECT_NOT_STARTED_YET = true;
+ }
+
+ hsv.h = 0;
+ hsv.s = 255;
+
+ if (i >= led_first && i < led_first + led_count) {
+ uint8_t j = i - led_first;
+ if (j == time_to_led(time, 0)) {
+ hsv.v = hsv.v;
+ } else if (j == time_to_led(time, 1)) {
+ hsv.v = hsv.v/2;
+ } else if (j == time_to_led(time, 2)) {
+ hsv.v = hsv.v/4;
+ } else if (j == time_to_led(time, 3)) {
+ hsv.v = hsv.v/8;
+ } else {
+ hsv.v = 0;
+ }
+ } else {
+ hsv.v = 0;
+ }
+
+ return hsv;
+}
+
+bool KITT(effect_params_t* params) { return effect_runner_i(params, &KITT_math); } \ No newline at end of file
diff --git a/keyboards/akko/3061_rgb/keymaps/horrortroll/led/rainbow_reactive_simple/rainbow_reactive_simple.c b/keyboards/akko/3061_rgb/keymaps/horrortroll/led/rainbow_reactive_simple/rainbow_reactive_simple.c
new file mode 100644
index 000000000..2695e4408
--- /dev/null
+++ b/keyboards/akko/3061_rgb/keymaps/horrortroll/led/rainbow_reactive_simple/rainbow_reactive_simple.c
@@ -0,0 +1,9 @@
+#include "led/rainbow_reactive_simple/rainbow_reactive_simple.h"
+
+static HSV RAINBOW_REACTIVE_SIMPLE_math(HSV hsv, uint8_t i, uint8_t time, uint16_t offset) {
+ hsv.h = g_led_config.point[i].x - time;
+ hsv.v = scale8(255 - offset, hsv.v);
+ return hsv;
+}
+
+bool RAINBOW_REACTIVE_SIMPLE(effect_params_t* params) { return effect_rainbow_reactive(params, &RAINBOW_REACTIVE_SIMPLE_math); } \ No newline at end of file
diff --git a/keyboards/akko/3061_rgb/keymaps/horrortroll/led/rainbow_reactive_simple/rainbow_reactive_simple.h b/keyboards/akko/3061_rgb/keymaps/horrortroll/led/rainbow_reactive_simple/rainbow_reactive_simple.h
new file mode 100644
index 000000000..3ffc75f3a
--- /dev/null
+++ b/keyboards/akko/3061_rgb/keymaps/horrortroll/led/rainbow_reactive_simple/rainbow_reactive_simple.h
@@ -0,0 +1,29 @@
+#pragma once
+
+typedef HSV (*rainbow_reactive_f)(HSV hsv, uint8_t i, uint8_t time, uint16_t offset);
+
+bool effect_rainbow_reactive(effect_params_t* params, rainbow_reactive_f effect_func) {
+ RGB_MATRIX_USE_LIMITS(led_min, led_max);
+
+ uint8_t time = scale16by8(g_rgb_timer, rgb_matrix_config.speed / 4);
+ uint16_t max_tick = 65535 / rgb_matrix_config.speed;
+
+ for (uint8_t i = led_min; i < led_max; i++) {
+ RGB_MATRIX_TEST_LED_FLAGS();
+ uint16_t tick = max_tick;
+
+ // Reverse search to find most recent key hit
+ for (int8_t j = g_last_hit_tracker.count - 1; j >= 0; j--) {
+ if (g_last_hit_tracker.index[j] == i && g_last_hit_tracker.tick[j] < tick) {
+ tick = g_last_hit_tracker.tick[j];
+ break;
+ }
+ }
+
+ uint16_t offset = scale16by8(tick, rgb_matrix_config.speed);
+ RGB rgb = rgb_matrix_hsv_to_rgb(effect_func(rgb_matrix_config.hsv, i, time, offset));
+ rgb_matrix_set_color(i, rgb.r, rgb.g, rgb.b);
+ }
+
+ return led_max < DRIVER_LED_TOTAL;
+} \ No newline at end of file
diff --git a/keyboards/akko/3061_rgb/keymaps/horrortroll/led/random_breath_rainbow.c b/keyboards/akko/3061_rgb/keymaps/horrortroll/led/random_breath_rainbow.c
new file mode 100644
index 000000000..414f88367
--- /dev/null
+++ b/keyboards/akko/3061_rgb/keymaps/horrortroll/led/random_breath_rainbow.c
@@ -0,0 +1,38 @@
+static uint8_t offset[DRIVER_LED_TOTAL];
+
+static void doRandom_breath_rainbow(int i, effect_params_t* params) {
+ uint16_t time = scale16by8(g_rgb_timer, rgb_matrix_config.speed / 6);
+
+ if (rand() * 50 == 1) {
+ if (rand() * 2 == 1) {
+ offset[i]++;
+ }
+ else {
+ offset[i]--;
+ }
+ }
+
+ //float val = (((float)sin8(time + offset[i]) / 256)/2.1) + .05;
+ HSV hsv = {0, 255, 255};
+ hsv.h = scale16by8(g_rgb_timer + offset[i], rgb_matrix_config.speed / 4) + (offset[i]*2);
+ hsv.v = scale8(abs8(sin8(time) - 128) * 2, hsv.v);
+ RGB rgb = rgb_matrix_hsv_to_rgb(hsv);
+ rgb_matrix_set_color(i, rgb.r, rgb.g, rgb.b);
+}
+
+bool RANDOM_BREATH_RAINBOW(effect_params_t* params) {
+
+ if (!params->init) {
+ // Change one LED every tick, make sure speed is not 0
+ doRandom_breath_rainbow(rand() % DRIVER_LED_TOTAL, params);
+ return false;
+ }
+
+ RGB_MATRIX_USE_LIMITS(led_min, led_max);
+
+ for (uint8_t i = led_min; i < led_max; i++) {
+ doRandom_breath_rainbow(i, params);
+ }
+
+ return led_max < DRIVER_LED_TOTAL;
+} \ No newline at end of file
diff --git a/keyboards/akko/3061_rgb/keymaps/horrortroll/readme.md b/keyboards/akko/3061_rgb/keymaps/horrortroll/readme.md
new file mode 100644
index 000000000..52df48fee
--- /dev/null
+++ b/keyboards/akko/3061_rgb/keymaps/horrortroll/readme.md
@@ -0,0 +1,13 @@
+# My personal keymap with VIA and custom LED effect
+
+Keymap is default 61 qwerty 60% layout
+
+It have new LED effect:
+
+- Custom gradient (ported from SirTimmyTimbit code [https://github.com/SirTimmyTimbit/customizable-gradient-effect-for-drop-alt])
+- Diagonal (ported from pleasuretek code [https://github.com/pleasuretek/qmk_firmware])
+- Rainbow reactive simple
+- Knight Rider (ported from jumper149 code [https://github.com/jumper149/qmk_firmware/blob/jumper149/keyboards/dztech/dz65rgb/keymaps/jumper149/])
+- Random breath rainbow (based from daed code [https://github.com/daed/qmk_firmware/blob/master/keyboards/massdrop/alt/keymaps/daed] and modify by me)
+- Per-key LED layer for pressing FN key
+- Per-key LED layer for pressing RN key \ No newline at end of file
diff --git a/keyboards/akko/3061_rgb/keymaps/horrortroll/rgb_matrix_user.inc b/keyboards/akko/3061_rgb/keymaps/horrortroll/rgb_matrix_user.inc
new file mode 100644
index 000000000..c89cca466
--- /dev/null
+++ b/keyboards/akko/3061_rgb/keymaps/horrortroll/rgb_matrix_user.inc
@@ -0,0 +1,17 @@
+RGB_MATRIX_EFFECT(CUSTOM_GRADIENT)
+RGB_MATRIX_EFFECT(DIAGONAL)
+RGB_MATRIX_EFFECT(COOL_DIAGONAL)
+RGB_MATRIX_EFFECT(RAINBOW_REACTIVE_SIMPLE)
+RGB_MATRIX_EFFECT(KITT)
+RGB_MATRIX_EFFECT(RANDOM_BREATH_RAINBOW)
+
+#ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS
+
+#include "led/custom_gradient.c"
+#include "led/diagonal.c"
+#include "led/cool_diagonal.c"
+#include "led/rainbow_reactive_simple/rainbow_reactive_simple.c"
+#include "led/kitt.c"
+#include "led/random_breath_rainbow.c"
+
+#endif // RGB_MATRIX_CUSTOM_EFFECT_IMPLS \ No newline at end of file
diff --git a/keyboards/akko/3061_rgb/keymaps/horrortroll/rules.mk b/keyboards/akko/3061_rgb/keymaps/horrortroll/rules.mk
new file mode 100644
index 000000000..01fa1a389
--- /dev/null
+++ b/keyboards/akko/3061_rgb/keymaps/horrortroll/rules.mk
@@ -0,0 +1,6 @@
+# Build Options
+# change yes to no to disable
+VIA_ENABLE = yes
+
+# can this go just in the keymap?
+RGB_MATRIX_CUSTOM_USER = yes
diff --git a/keyboards/akko/3061_rgb/keymaps/via/config.h b/keyboards/akko/3061_rgb/keymaps/via/config.h
new file mode 100644
index 000000000..df6ba7cac
--- /dev/null
+++ b/keyboards/akko/3061_rgb/keymaps/via/config.h
@@ -0,0 +1,20 @@
+/*
+Copyright 2021 HorrorTroll
+
+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/>.
+*/
+
+#pragma once
+
+#define DYNAMIC_KEYMAP_LAYER_COUNT 2
diff --git a/keyboards/akko/3061_rgb/keymaps/via/keymap.c b/keyboards/akko/3061_rgb/keymaps/via/keymap.c
new file mode 100644
index 000000000..8eb13e85c
--- /dev/null
+++ b/keyboards/akko/3061_rgb/keymaps/via/keymap.c
@@ -0,0 +1,95 @@
+/*
+Copyright 2021 HorrorTroll
+
+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 QMK_KEYBOARD_H
+
+#include "3061_rgb.h"
+
+// Each layer gets a name for readability, which is then used in the keymap matrix below.
+// The underscores don't mean anything - you can have a layer called STUFF or any other name.
+// Layer names don't all need to be of the same length, obviously, and you can also skip them
+// entirely and just use numbers.
+
+enum layer_names {
+ _BASE = 0,
+ _FN = 1
+};
+
+// enum layer_keycodes { };
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+
+/*
+ ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐
+ │Esc│ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ = │ Bakspc│
+ ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤
+ │ Tab │ q │ w │ e │ r │ t │ y │ u │ i │ o │ p │ [ │ ] │ \ │
+ ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤
+ │ Caps │ a │ s │ d │ f │ g │ h │ j │ k │ l │ ; │ ' │ Enter │
+ ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤
+ │ LShift │ z │ x │ c │ v │ b │ n │ m │ , │ . │ / │ RShift │
+ ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤
+ │LCrl│GUI │LAlt│ Space │RAlt│GUI │ Fn │RCrl│
+ └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘
+ ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐
+ │ ~ │ ! │ @ │ # │ $ │ % │ ^ │ & │ * │ ( │ ) │ _ │ + │ │
+ ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤
+ │ │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ { │ } │ | │
+ ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤
+ │ Caps │ A │ S │ D │ F │ G │ H │ J │ K │ L │ : │ " │ │
+ ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤
+ │ LShift │ Z │ X │ C │ V │ B │ N │ M │ < │ > │ ? │ RShift │
+ ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤
+ │ │ │ │ │ │ │ │ │
+ └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘
+*/
+ /* Row: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 */
+ [_BASE] = LAYOUT_60_ansi(
+ KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC,
+ KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS,
+ KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT,
+ KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT,
+ KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, MO(_FN), KC_RCTL
+ ),
+
+/*
+ ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐
+ │ ` │F1 │F2 │F3 │F4 │F5 │F6 │F7 │F8 │F9 │F10│F11│F12│ Delete│
+ ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤
+ │ │ │ ↑ │ │ │ │ │ │Ins│ │PSc│Vad│Vai│ Hui │
+ ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤
+ │ │ ← │ ↓ │ → │ │ │ │ │ │Tog│Spd│Spi│RGB_Mode│
+ ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤
+ │ │ │ │Cal│ │ │ │Mut│VoD│VoU│ │ │
+ ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤
+ │ │ │ │ │ │ Fn │ │ │
+ └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘
+*/
+ /* Row: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 */
+ [_FN] = LAYOUT_60_ansi(
+ KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_DEL,
+ RESET, _______, KC_UP, _______, _______, _______, _______, _______, KC_INS, _______, KC_PSCR, RGB_VAD, RGB_VAI, RGB_HUI,
+ _______, KC_LEFT, KC_DOWN, KC_RIGHT, _______, _______, _______, _______, _______, RGB_TOG, RGB_SPD, RGB_SPI, RGB_MOD,
+ _______, _______, _______, KC_CALC, _______, _______, _______, KC_MUTE, KC_VOLD, KC_VOLU, _______, _______,
+ _______, _______, _______, _______, _______, _______, _______, _______
+ ),
+};
+
+void rgb_matrix_indicators_user(void) {
+ if (host_keyboard_led_state().caps_lock) {
+ rgb_matrix_set_color(28, 217, 71, 115); // assuming caps lock is at led #40
+ }
+} \ No newline at end of file
diff --git a/keyboards/akko/3061_rgb/keymaps/via/readme.md b/keyboards/akko/3061_rgb/keymaps/via/readme.md
new file mode 100644
index 000000000..be5380198
--- /dev/null
+++ b/keyboards/akko/3061_rgb/keymaps/via/readme.md
@@ -0,0 +1,3 @@
+# Default Layout with VIA
+
+Keymap is default 61 qwerty 60% layout \ No newline at end of file
diff --git a/keyboards/akko/3061_rgb/keymaps/via/rules.mk b/keyboards/akko/3061_rgb/keymaps/via/rules.mk
new file mode 100644
index 000000000..d75544fb0
--- /dev/null
+++ b/keyboards/akko/3061_rgb/keymaps/via/rules.mk
@@ -0,0 +1,3 @@
+# Build Options
+# change yes to no to disable
+VIA_ENABLE = yes \ No newline at end of file
diff --git a/keyboards/akko/3061_rgb/readme.md b/keyboards/akko/3061_rgb/readme.md
new file mode 100644
index 000000000..b6321503a
--- /dev/null
+++ b/keyboards/akko/3061_rgb/readme.md
@@ -0,0 +1,13 @@
+# AKKO 3061 World Tour Tokyo R2 RGB
+
+This is the 3061 World Tour Tokyo R2 RGB made by AKKO
+
+* Keyboard Maintainer: [HorrorTroll](https://github.com/HorrorTroll)
+* Hardware Supported: 3061 World Tour Tokyo R2 RGB
+* Hardware Availability:
+
+Make example for this keyboard (after setting up your build environment):
+
+ make akko/3061_rgb:default
+
+See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
diff --git a/keyboards/akko/3061_rgb/rules.mk b/keyboards/akko/3061_rgb/rules.mk
new file mode 100644
index 000000000..17f6b40c9
--- /dev/null
+++ b/keyboards/akko/3061_rgb/rules.mk
@@ -0,0 +1,32 @@
+# project specific files
+SRC = ../../../drivers/led/sn32/matrix_sn32f24xx.c
+SRC += config_led.c
+
+# MCU name
+MCU = SN32F248BF
+
+# Build Options
+# change yes to no to disable
+#
+MAGIC_ENABLE = yes
+MAGIC_KEYCODE_ENABLE = yes
+BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
+MOUSEKEY_ENABLE = no # Mouse keys
+EXTRAKEY_ENABLE = yes # Audio control and System control
+CONSOLE_ENABLE = no # Console for debug
+COMMAND_ENABLE = no # Commands for debug and configuration
+# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
+SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
+# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
+NKRO_ENABLE = yes # USB Nkey Rollover
+BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
+RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
+AUDIO_ENABLE = no # Audio output
+LTO_ENABLE = no
+
+CUSTOM_MATRIX = yes
+KEYBOARD_SHARED_EP = yes
+
+# Custom RGB matrix handling
+RGB_MATRIX_ENABLE = yes
+RGB_MATRIX_DRIVER = SN32F24xB