aboutsummaryrefslogtreecommitdiff
path: root/keyboards/mlego
diff options
context:
space:
mode:
authorAlin Marin Elena <alin@elena.space>2022-01-11 01:47:52 +0000
committerGitHub <noreply@github.com>2022-01-10 17:47:52 -0800
commit7275680364ac9db87a03f5232d87bf203eaf3f40 (patch)
tree2100cefaa556fd1c3060c30fa546851a2a9d9fec /keyboards/mlego
parent6823f01c107dafaa4e1876cb11677bd4435153ed (diff)
downloadqmk_firmware-7275680364ac9db87a03f5232d87bf203eaf3f40.tar.gz
qmk_firmware-7275680364ac9db87a03f5232d87bf203eaf3f40.zip
[Keyboard] M60 simple 5x12 in lego keyboard (#15534)
* add m60 lego case, with stm32f401 * Update keyboards/mlego/m60/m60.h * Update keyboards/mlego/m60/keymaps/default/keymap.c * Update keyboards/mlego/m60/m60.h * Update keyboards/mlego/m60/keymaps/via/keymap.c * address the moving of enum in keymaps
Diffstat (limited to 'keyboards/mlego')
-rw-r--r--keyboards/mlego/m60/config.h37
-rw-r--r--keyboards/mlego/m60/info.json11
-rw-r--r--keyboards/mlego/m60/keymaps/default/config.h21
-rw-r--r--keyboards/mlego/m60/keymaps/default/keymap.c175
-rw-r--r--keyboards/mlego/m60/keymaps/via/config.h20
-rw-r--r--keyboards/mlego/m60/keymaps/via/keymap.c175
-rw-r--r--keyboards/mlego/m60/keymaps/via/rules.mk1
-rw-r--r--keyboards/mlego/m60/m60.c30
-rw-r--r--keyboards/mlego/m60/m60.h57
-rw-r--r--keyboards/mlego/m60/readme.md49
-rw-r--r--keyboards/mlego/m60/rev1/config.h58
-rw-r--r--keyboards/mlego/m60/rev1/halconf.h30
-rw-r--r--keyboards/mlego/m60/rev1/mcuconf.h30
-rw-r--r--keyboards/mlego/m60/rev1/rules.mk22
14 files changed, 716 insertions, 0 deletions
diff --git a/keyboards/mlego/m60/config.h b/keyboards/mlego/m60/config.h
new file mode 100644
index 000000000..07698f753
--- /dev/null
+++ b/keyboards/mlego/m60/config.h
@@ -0,0 +1,37 @@
1/* Copyright 2021-2022 alin m elena <alinm.elena@gmail.com>
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16#pragma once
17
18#include "config_common.h"
19
20/* USB Device descriptor parameter */
21#define VENDOR_ID 0xBABA
22#define MANUFACTURER alin elena
23#define PRODUCT m60
24
25#define MATRIX_ROWS 5
26#define MATRIX_COLS 12
27
28#define DEBOUNCE 5
29
30/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
31#define LOCKING_SUPPORT_ENABLE
32/* Locking resynchronize hack */
33#define LOCKING_RESYNC_ENABLE
34
35/* disable these deprecated features by default */
36#define NO_ACTION_MACRO
37#define NO_ACTION_FUNCTION
diff --git a/keyboards/mlego/m60/info.json b/keyboards/mlego/m60/info.json
new file mode 100644
index 000000000..75b7bc38a
--- /dev/null
+++ b/keyboards/mlego/m60/info.json
@@ -0,0 +1,11 @@
1{
2 "keyboard_name": "mlego/m60",
3 "keyboard_folder": "mlego/m60",
4 "url": "https://gitlab.com/m-lego/m60",
5 "maintainer": "alin elena",
6 "layouts": {
7 "LAYOUT_ortho_5x12": {
8 "layout": [{"x":0, "y":0}, {"x":1, "y":0}, {"x":2, "y":0}, {"x":3, "y":0}, {"x":4, "y":0}, {"x":5, "y":0}, {"x":6, "y":0}, {"x":7, "y":0}, {"x":8, "y":0}, {"x":9, "y":0}, {"x":10, "y":0}, {"x":11, "y":0}, {"x":0, "y":1}, {"x":1, "y":1}, {"x":2, "y":1}, {"x":3, "y":1}, {"x":4, "y":1}, {"x":5, "y":1}, {"x":6, "y":1}, {"x":7, "y":1}, {"x":8, "y":1}, {"x":9, "y":1}, {"x":10, "y":1}, {"x":11, "y":1}, {"x":0, "y":2}, {"x":1, "y":2}, {"x":2, "y":2}, {"x":3, "y":2}, {"x":4, "y":2}, {"x":5, "y":2}, {"x":6, "y":2}, {"x":7, "y":2}, {"x":8, "y":2}, {"x":9, "y":2}, {"x":10, "y":2}, {"x":11, "y":2}, {"x":0, "y":3}, {"x":1, "y":3}, {"x":2, "y":3}, {"x":3, "y":3}, {"x":4, "y":3}, {"x":5, "y":3}, {"x":6, "y":3}, {"x":7, "y":3}, {"x":8, "y":3}, {"x":9, "y":3}, {"x":10, "y":3}, {"x":11, "y":3}, {"x":0, "y":4}, {"x":1, "y":4}, {"x":2, "y":4}, {"x":3, "y":4}, {"x":4, "y":4}, {"x":5, "y":4}, {"x":6, "y":4}, {"x":7, "y":4}, {"x":8, "y":4}, {"x":9, "y":4}, {"x":10, "y":4}, {"x":11, "y":4}]
9 }
10 }
11}
diff --git a/keyboards/mlego/m60/keymaps/default/config.h b/keyboards/mlego/m60/keymaps/default/config.h
new file mode 100644
index 000000000..b1aed18a1
--- /dev/null
+++ b/keyboards/mlego/m60/keymaps/default/config.h
@@ -0,0 +1,21 @@
1/*
2Copyright 2021-2022 Alin M Elena <alinm.elena@gmail.com>
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#pragma once
19
20#define TAPPING_TOGGLE 2
21#define UNICODE_SELECTED_MODES UC_LNX, UC_MAC, UC_WINC
diff --git a/keyboards/mlego/m60/keymaps/default/keymap.c b/keyboards/mlego/m60/keymaps/default/keymap.c
new file mode 100644
index 000000000..18fdba688
--- /dev/null
+++ b/keyboards/mlego/m60/keymaps/default/keymap.c
@@ -0,0 +1,175 @@
1/*
2Copyright 2021-2022 Alin M Elena <alinm.elena@gmail.com>
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#include QMK_KEYBOARD_H
19
20enum layer_names {
21 _QW = 0,
22 _LWR,
23 _RSE,
24 _ADJ
25};
26
27#ifdef RGBLIGHT_ENABLE
28
29const rgblight_segment_t PROGMEM my_qwerty_layer[] = RGBLIGHT_LAYER_SEGMENTS({0, RGBLED_NUM, HSV_PURPLE});
30const rgblight_segment_t PROGMEM my_lwr_layer[] = RGBLIGHT_LAYER_SEGMENTS({0, RGBLED_NUM, HSV_CYAN});
31const rgblight_segment_t PROGMEM my_rse_layer[] = RGBLIGHT_LAYER_SEGMENTS({0, RGBLED_NUM, HSV_RED});
32const rgblight_segment_t PROGMEM my_adj_layer[] = RGBLIGHT_LAYER_SEGMENTS({0, RGBLED_NUM, HSV_GREEN});
33
34const rgblight_segment_t* const PROGMEM my_rgb_layers[] = RGBLIGHT_LAYERS_LIST(my_qwerty_layer, my_lwr_layer, my_rse_layer, my_adj_layer);
35#endif
36
37#define LOWER TT(_LWR)
38#define RAISE TT(_RSE)
39
40// clang-format off
41const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
42[_QW] = LAYOUT_ortho_5x12(
43 KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC,
44 KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL,
45 KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
46 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT ,
47 KC_LCTL, KC_LGUI, KC_LALT, KC_APP, LOWER, KC_SPC, KC_SPC, RAISE, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT
48),
49
50[_LWR] = LAYOUT_ortho_5x12(
51 KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_DEL,
52 KC_DEL, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, KC_PIPE,
53 _______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,S(KC_NUHS),S(KC_NUBS),_______, _______, _______,
54 _______, _______, _______, _______, _______, _______, _______, _______, KC_MNXT, KC_VOLD, KC_VOLU, KC_MPLY,
55 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
56),
57
58[_RSE] = LAYOUT_ortho_5x12(
59 KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_DEL,
60 KC_DEL, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_BSLS,
61 _______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_NUHS, KC_NUBS, _______, _______, _______,
62 _______, _______, _______, _______, _______, _______, _______, _______, KC_MNXT, KC_VOLD, KC_VOLU, KC_MPLY,
63 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
64),
65
66[_ADJ] = LAYOUT_ortho_5x12(
67 _______, RESET, _______, _______, _______, _______, RGB_TOG, RGB_MOD, RGB_RMOD,RGB_M_G, RESET, _______,
68 _______, _______, _______, _______, _______, _______, RGB_HUI, RGB_SAI, RGB_VAI, _______, _______, _______,
69 _______, _______, _______, _______, _______, _______, RGB_HUD, RGB_SAD, RGB_VAD, _______, _______, _______,
70 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
71 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
72)
73
74};
75// clang-format on
76
77// let us assume we start with both layers off
78bool toggle_lwr = false;
79bool toggle_rse = false;
80
81bool led_update_user(led_t led_state) {
82 // Disable the default LED update code, so that lock LEDs could be reused to show layer status.
83 return false;
84}
85
86void matrix_scan_user(void) {
87 led_lwr(toggle_lwr);
88 led_rse(toggle_rse);
89 led_t led_state = host_keyboard_led_state();
90 led_caps(led_state.caps_lock);
91 if (layer_state_is(_ADJ)) {
92 led_lwr(true);
93 led_rse(true);
94 }
95}
96
97bool process_record_user(uint16_t keycode, keyrecord_t* record) {
98 switch (keycode) {
99 case (TT(_LWR)):
100 if (!record->event.pressed && record->tap.count == TAPPING_TOGGLE) {
101 // This runs before the TT() handler toggles the layer state, so the current layer state is the opposite of the final one after toggle.
102 toggle_lwr = !layer_state_is(_LWR);
103 }
104 return true;
105 break;
106 case (TT(_RSE)):
107 if (record->event.pressed && record->tap.count == TAPPING_TOGGLE) {
108 toggle_rse = !layer_state_is(_RSE);
109 }
110 return true;
111 break;
112 default:
113 return true;
114 }
115}
116
117layer_state_t layer_state_set_user(layer_state_t state) {
118#ifdef RGBLIGHT_ENABLE
119
120 rgblight_set_layer_state(0, layer_state_cmp(state, _QW));
121 rgblight_set_layer_state(1, layer_state_cmp(state, _LWR));
122 rgblight_set_layer_state(2, layer_state_cmp(state, _RSE));
123 rgblight_set_layer_state(3, layer_state_cmp(state, _ADJ));
124
125#endif
126 return update_tri_layer_state(state, _LWR, _RSE, _ADJ);
127}
128
129#ifdef RGBLIGHT_ENABLE
130
131layer_state_t default_layer_state_set_user(layer_state_t state) {
132 rgblight_set_layer_state(0, layer_state_cmp(state, _QW));
133 return state;
134}
135
136void keyboard_post_init_user(void) {
137 // Enable the LED layers
138 rgblight_layers = my_rgb_layers;
139}
140#endif
141
142#ifdef ENCODER_ENABLE
143
144# define MEDIA_KEY_DELAY 10
145
146static inline void my_encoders(const uint8_t index, const bool clockwise) {
147 if (index == 0) { /* First encoder */
148 if (IS_LAYER_ON(_LWR)) {
149 if (clockwise) {
150 rgblight_decrease_val_noeeprom();
151 } else {
152 rgblight_increase_val_noeeprom();
153 }
154 } else if (IS_LAYER_ON(_RSE)) {
155 if (clockwise) {
156 rgblight_decrease_hue_noeeprom();
157 } else {
158 rgblight_increase_hue_noeeprom();
159 }
160
161 } else {
162 if (clockwise) {
163 tap_code_delay(KC_VOLD, MEDIA_KEY_DELAY);
164 } else {
165 tap_code_delay(KC_VOLU, MEDIA_KEY_DELAY);
166 }
167 }
168 }
169}
170
171bool encoder_update_user(uint8_t index, bool clockwise) {
172 my_encoders(index, clockwise);
173 return true;
174}
175#endif
diff --git a/keyboards/mlego/m60/keymaps/via/config.h b/keyboards/mlego/m60/keymaps/via/config.h
new file mode 100644
index 000000000..637c0a8fa
--- /dev/null
+++ b/keyboards/mlego/m60/keymaps/via/config.h
@@ -0,0 +1,20 @@
1/*
2Copyright 2021-2022 Alin M Elena <alinm.elena@gmail.com>
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#pragma once
19
20#define TAPPING_TOGGLE 2
diff --git a/keyboards/mlego/m60/keymaps/via/keymap.c b/keyboards/mlego/m60/keymaps/via/keymap.c
new file mode 100644
index 000000000..18fdba688
--- /dev/null
+++ b/keyboards/mlego/m60/keymaps/via/keymap.c
@@ -0,0 +1,175 @@
1/*
2Copyright 2021-2022 Alin M Elena <alinm.elena@gmail.com>
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#include QMK_KEYBOARD_H
19
20enum layer_names {
21 _QW = 0,
22 _LWR,
23 _RSE,
24 _ADJ
25};
26
27#ifdef RGBLIGHT_ENABLE
28
29const rgblight_segment_t PROGMEM my_qwerty_layer[] = RGBLIGHT_LAYER_SEGMENTS({0, RGBLED_NUM, HSV_PURPLE});
30const rgblight_segment_t PROGMEM my_lwr_layer[] = RGBLIGHT_LAYER_SEGMENTS({0, RGBLED_NUM, HSV_CYAN});
31const rgblight_segment_t PROGMEM my_rse_layer[] = RGBLIGHT_LAYER_SEGMENTS({0, RGBLED_NUM, HSV_RED});
32const rgblight_segment_t PROGMEM my_adj_layer[] = RGBLIGHT_LAYER_SEGMENTS({0, RGBLED_NUM, HSV_GREEN});
33
34const rgblight_segment_t* const PROGMEM my_rgb_layers[] = RGBLIGHT_LAYERS_LIST(my_qwerty_layer, my_lwr_layer, my_rse_layer, my_adj_layer);
35#endif
36
37#define LOWER TT(_LWR)
38#define RAISE TT(_RSE)
39
40// clang-format off
41const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
42[_QW] = LAYOUT_ortho_5x12(
43 KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC,
44 KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL,
45 KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
46 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT ,
47 KC_LCTL, KC_LGUI, KC_LALT, KC_APP, LOWER, KC_SPC, KC_SPC, RAISE, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT
48),
49
50[_LWR] = LAYOUT_ortho_5x12(
51 KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_DEL,
52 KC_DEL, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, KC_PIPE,
53 _______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,S(KC_NUHS),S(KC_NUBS),_______, _______, _______,
54 _______, _______, _______, _______, _______, _______, _______, _______, KC_MNXT, KC_VOLD, KC_VOLU, KC_MPLY,
55 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
56),
57
58[_RSE] = LAYOUT_ortho_5x12(
59 KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_DEL,
60 KC_DEL, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_BSLS,
61 _______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_NUHS, KC_NUBS, _______, _______, _______,
62 _______, _______, _______, _______, _______, _______, _______, _______, KC_MNXT, KC_VOLD, KC_VOLU, KC_MPLY,
63 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
64),
65
66[_ADJ] = LAYOUT_ortho_5x12(
67 _______, RESET, _______, _______, _______, _______, RGB_TOG, RGB_MOD, RGB_RMOD,RGB_M_G, RESET, _______,
68 _______, _______, _______, _______, _______, _______, RGB_HUI, RGB_SAI, RGB_VAI, _______, _______, _______,
69 _______, _______, _______, _______, _______, _______, RGB_HUD, RGB_SAD, RGB_VAD, _______, _______, _______,
70 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
71 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
72)
73
74};
75// clang-format on
76
77// let us assume we start with both layers off
78bool toggle_lwr = false;
79bool toggle_rse = false;
80
81bool led_update_user(led_t led_state) {
82 // Disable the default LED update code, so that lock LEDs could be reused to show layer status.
83 return false;
84}
85
86void matrix_scan_user(void) {
87 led_lwr(toggle_lwr);
88 led_rse(toggle_rse);
89 led_t led_state = host_keyboard_led_state();
90 led_caps(led_state.caps_lock);
91 if (layer_state_is(_ADJ)) {
92 led_lwr(true);
93 led_rse(true);
94 }
95}
96
97bool process_record_user(uint16_t keycode, keyrecord_t* record) {
98 switch (keycode) {
99 case (TT(_LWR)):
100 if (!record->event.pressed && record->tap.count == TAPPING_TOGGLE) {
101 // This runs before the TT() handler toggles the layer state, so the current layer state is the opposite of the final one after toggle.
102 toggle_lwr = !layer_state_is(_LWR);
103 }
104 return true;
105 break;
106 case (TT(_RSE)):
107 if (record->event.pressed && record->tap.count == TAPPING_TOGGLE) {
108 toggle_rse = !layer_state_is(_RSE);
109 }
110 return true;
111 break;
112 default:
113 return true;
114 }
115}
116
117layer_state_t layer_state_set_user(layer_state_t state) {
118#ifdef RGBLIGHT_ENABLE
119
120 rgblight_set_layer_state(0, layer_state_cmp(state, _QW));
121 rgblight_set_layer_state(1, layer_state_cmp(state, _LWR));
122 rgblight_set_layer_state(2, layer_state_cmp(state, _RSE));
123 rgblight_set_layer_state(3, layer_state_cmp(state, _ADJ));
124
125#endif
126 return update_tri_layer_state(state, _LWR, _RSE, _ADJ);
127}
128
129#ifdef RGBLIGHT_ENABLE
130
131layer_state_t default_layer_state_set_user(layer_state_t state) {
132 rgblight_set_layer_state(0, layer_state_cmp(state, _QW));
133 return state;
134}
135
136void keyboard_post_init_user(void) {
137 // Enable the LED layers
138 rgblight_layers = my_rgb_layers;
139}
140#endif
141
142#ifdef ENCODER_ENABLE
143
144# define MEDIA_KEY_DELAY 10
145
146static inline void my_encoders(const uint8_t index, const bool clockwise) {
147 if (index == 0) { /* First encoder */
148 if (IS_LAYER_ON(_LWR)) {
149 if (clockwise) {
150 rgblight_decrease_val_noeeprom();
151 } else {
152 rgblight_increase_val_noeeprom();
153 }
154 } else if (IS_LAYER_ON(_RSE)) {
155 if (clockwise) {
156 rgblight_decrease_hue_noeeprom();
157 } else {
158 rgblight_increase_hue_noeeprom();
159 }
160
161 } else {
162 if (clockwise) {
163 tap_code_delay(KC_VOLD, MEDIA_KEY_DELAY);
164 } else {
165 tap_code_delay(KC_VOLU, MEDIA_KEY_DELAY);
166 }
167 }
168 }
169}
170
171bool encoder_update_user(uint8_t index, bool clockwise) {
172 my_encoders(index, clockwise);
173 return true;
174}
175#endif
diff --git a/keyboards/mlego/m60/keymaps/via/rules.mk b/keyboards/mlego/m60/keymaps/via/rules.mk
new file mode 100644
index 000000000..1e5b99807
--- /dev/null
+++ b/keyboards/mlego/m60/keymaps/via/rules.mk
@@ -0,0 +1 @@
VIA_ENABLE = yes
diff --git a/keyboards/mlego/m60/m60.c b/keyboards/mlego/m60/m60.c
new file mode 100644
index 000000000..cce37837c
--- /dev/null
+++ b/keyboards/mlego/m60/m60.c
@@ -0,0 +1,30 @@
1/* Copyright 2021-2022 alin elena <alin@elena.space>
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16#include "m60.h"
17
18/*
19void keyboard_pre_init_kb(void){
20
21 // Workaround for reversible pcb/mcu
22 palSetLineMode(C13, PAL_MODE_INPUT_PULLUP);
23 palSetLineMode(C15, PAL_MODE_INPUT_PULLUP);
24 palSetLineMode(B7, PAL_MODE_OUTPUT_OPENDRAIN);
25 palSetLineMode(A0, PAL_MODE_OUTPUT_OPENDRAIN);
26 palSetLineMode(A1, PAL_MODE_OUTPUT_OPENDRAIN);
27
28 keyboard_pre_init_user();
29 }
30*/
diff --git a/keyboards/mlego/m60/m60.h b/keyboards/mlego/m60/m60.h
new file mode 100644
index 000000000..732b8d2e4
--- /dev/null
+++ b/keyboards/mlego/m60/m60.h
@@ -0,0 +1,57 @@
1/*
2Copyright 2021-2022 Alin M Elena <alinm.elena@gmail.com>
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#pragma once
19
20#include "quantum.h"
21
22#define LAYOUT_ortho_5x12( \
23 K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, \
24 K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, \
25 K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, \
26 K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, \
27 K400, K401, K402, K403, K404, K405, K406, K407, K408, K409, K410, K411 \
28) { \
29 {K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011}, \
30 {K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111}, \
31 {K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211}, \
32 {K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311}, \
33 {K400, K401, K402, K403, K404, K405, K406, K407, K408, K409, K410, K411} \
34}
35
36static inline void led_lwr(const bool on) {
37#ifdef LED_NUM_LOCK_PIN
38 writePin(LED_NUM_LOCK_PIN, on);
39#endif
40}
41
42static inline void led_rse(const bool on) {
43#ifdef LED_SCROLL_LOCK_PIN
44 writePin(LED_SCROLL_LOCK_PIN, on);
45#endif
46}
47static inline void led_caps(const bool on) {
48#ifdef LED_CAPS_LOCK_PIN
49 if ((DEVICE_VER == 0x0001) || (DEVICE_VER == 0x0003)) {
50 writePin(LED_CAPS_LOCK_PIN, !on);
51 }
52 if (DEVICE_VER == 0x0002) {
53 writePin(LED_CAPS_LOCK_PIN, on);
54 }
55#endif
56}
57
diff --git a/keyboards/mlego/m60/readme.md b/keyboards/mlego/m60/readme.md
new file mode 100644
index 000000000..f695c33cf
--- /dev/null
+++ b/keyboards/mlego/m60/readme.md
@@ -0,0 +1,49 @@
1# M60
2
3![M60](https://i.imgur.com/Zm7LaHih.jpg)
4
5A (12x5) ortholinear keyboard that can be hand wired or using a pcb.
6
7* Keyboard Maintainer: [Alin Elena](https://github.com/alinelena) ([@drFaustroll on GitLab](https://gitlab.com/drFaustroll))
8* Hardware Supported: custom pcb [see](https://gitlab.com/drFaustroll/m60) STM32F401 from we act (rev1)
9* Hardware Availability: [custom how to](https://gitlab.com/drFaustroll/m65)
10
11
12Make example for this keyboard (after setting up your build environment):
13
14 make mlego/m60/rev1:default
15
16Flashing example for this keyboard:
17
18 make mlego/m60/rev1:default
19
20To enter flashing mode, press Lower+Raise also on microcontroller keep pressed BOOT0 and then NRST, release NRST and then after 0.5s or so release BOOT0.
21
22See 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).
23
24## Layout and pins stm32f401
25
26similar for stm32f411
27
28| Rows | C0 | C1 | C2 | C3 | C4 | C5 | C6 | C7 | C8 | C9 | C10 | C11 | Pins |
29| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: |
30| R0 | Esc | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | BSpace| A6 |
31| R1 | Tab | q | w | e | r | t | y | u | i | o | p | Del | A7 |
32| R2 | # | a | s | d | f | g | h | j | k | l | ; | ' | B0 |
33| R3 | Shift | z | x | c | v | b | n | m | , | . | / | Enter | B1 |
34| R4 | Ctrl | Menu | Alt | Fn | Lower | Space | Space | Raise | Left | Down | Up | Right | B10 |
35| Pins | A10 | A15 | B3 | B4 | B5 | B7 | B6 | A1 | A2 | A3 | A4 | A5 | |
36
37### Encoders:
38
39 - Pad_A: A0
40 - Pad_B: B8
41
42### Leds
43
44| Leds | Pin |
45| ----------- | --- |
46| NUM_LOCK | B12 |
47| CAPS_LOCK | C13 |
48| SCROLL_LOCK | B13 |
49| RBG_dI | B15 |
diff --git a/keyboards/mlego/m60/rev1/config.h b/keyboards/mlego/m60/rev1/config.h
new file mode 100644
index 000000000..c05f30813
--- /dev/null
+++ b/keyboards/mlego/m60/rev1/config.h
@@ -0,0 +1,58 @@
1/* Copyright 2021-2022 alin m elena <alinm.elena@gmail.com>
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16#pragma once
17
18#include "config_common.h"
19
20/* USB Device descriptor parameter */
21#define PRODUCT_ID 0x0001
22#define DEVICE_VER 0x0001
23
24#define MATRIX_ROW_PINS \
25 { A6, A7, B0, B1, B10 }
26#define MATRIX_COL_PINS \
27 { A10, A15, B3, B4, B5, B7, B6, A1, A2, A3, A4, A5 }
28
29#define ENCODERS_PAD_A \
30 { A0 }
31#define ENCODERS_PAD_B \
32 { B8 }
33
34#define LED_NUM_LOCK_PIN B12
35#define LED_SCROLL_LOCK_PIN B13
36#define LED_CAPS_LOCK_PIN C13
37
38#define RGB_DI_PIN B15
39
40#define UNUSED_PINS
41#define RGBLIGHT_LAYERS
42
43/* COL2ROW, ROW2COL*/
44#define DIODE_DIRECTION COL2ROW
45
46#define MATRIX_IO_DELAY 5
47
48#define RGBLED_NUM 20
49#define RGBLIGHT_EFFECT_BREATHING
50#define RGBLIGHT_EFFECT_RAINBOW_MOOD
51#define RGBLIGHT_EFFECT_RAINBOW_SWIRL
52#define RGBLIGHT_EFFECT_SNAKE
53#define RGBLIGHT_EFFECT_KNIGHT
54#define RGBLIGHT_EFFECT_CHRISTMAS
55#define RGBLIGHT_EFFECT_STATIC_GRADIENT
56#define RGBLIGHT_EFFECT_RGB_TEST
57#define RGBLIGHT_EFFECT_ALTERNATING
58#define RGBLIGHT_EFFECT_TWINKLE
diff --git a/keyboards/mlego/m60/rev1/halconf.h b/keyboards/mlego/m60/rev1/halconf.h
new file mode 100644
index 000000000..89815e23b
--- /dev/null
+++ b/keyboards/mlego/m60/rev1/halconf.h
@@ -0,0 +1,30 @@
1/* Copyright 2020 QMK
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17/*
18 * This file was auto-generated by:
19 * `qmk chibios-confmigrate -i keyboards/zvecr/zv48/f401/halconf.h -r platforms/chibios/common/configs/halconf.h`
20 */
21
22#pragma once
23
24#define HAL_USE_PWM TRUE
25
26#define HAL_USE_SERIAL TRUE
27
28#define SERIAL_USB_BUFFERS_SIZE 256
29
30#include_next <halconf.h>
diff --git a/keyboards/mlego/m60/rev1/mcuconf.h b/keyboards/mlego/m60/rev1/mcuconf.h
new file mode 100644
index 000000000..4d90ec07e
--- /dev/null
+++ b/keyboards/mlego/m60/rev1/mcuconf.h
@@ -0,0 +1,30 @@
1/* Copyright 2020 QMK
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17/*
18 * This file was auto-generated by:
19 * `qmk chibios-confmigrate -i keyboards/zvecr/zv48/f401/mcuconf.h -r platforms/chibios/BLACKPILL_STM32_F401/configs/mcuconf.h`
20 */
21
22#pragma once
23
24#include_next <mcuconf.h>
25
26#undef STM32_PWM_USE_TIM3
27#define STM32_PWM_USE_TIM3 TRUE
28
29#undef STM32_SERIAL_USE_USART1
30#define STM32_SERIAL_USE_USART1 TRUE
diff --git a/keyboards/mlego/m60/rev1/rules.mk b/keyboards/mlego/m60/rev1/rules.mk
new file mode 100644
index 000000000..a3ccf0102
--- /dev/null
+++ b/keyboards/mlego/m60/rev1/rules.mk
@@ -0,0 +1,22 @@
1# MCU name
2MCU = STM32F401
3
4# Bootloader selection
5BOOTLOADER = stm32-dfu
6
7# Build Options
8# change yes to no to disable
9#
10
11BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
12MOUSEKEY_ENABLE = yes # Mouse keys
13EXTRAKEY_ENABLE = yes # Audio control and System control
14CONSOLE_ENABLE = no # Console for debug
15COMMAND_ENABLE = no # Commands for debug and configuration
16NKRO_ENABLE = yes # Enable N-Key Rollover
17BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
18RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow
19AUDIO_ENABLE = no # Audio output
20ENCODER_ENABLE = yes # Enable encoder
21
22LAYOUTS = ortho_5x12