Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add customMK EVO70 #14907

Merged
merged 26 commits into from
Jul 19, 2022
Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
4cbf1e4
added files for EVO70
infinityis Oct 22, 2021
1613bd4
updated info.json and readme
infinityis Oct 22, 2021
ee0b902
ran qmk lint and fixed typo in info.json
infinityis Oct 22, 2021
6406471
removed defines from config.h in favor of info.json
infinityis Oct 22, 2021
3355112
removed an unnecssary include
infinityis Oct 22, 2021
87dd330
removed unnecessary code
infinityis Oct 22, 2021
e432098
updated rules.mk to remove mention of Bluetooth
infinityis Oct 23, 2021
c07ba17
corrected edit to rules.mk
infinityis Oct 23, 2021
fcd1893
added code for OLED menu display
infinityis Jan 23, 2022
8632e2c
removed extraneous comments and spaces
infinityis Jan 24, 2022
830c6ab
added bongo cat animation
infinityis Mar 4, 2022
f6ce5cd
Update keyboards/custommk/evo70/rules.mk
infinityis Mar 8, 2022
5fbefd0
Update keyboards/custommk/evo70/config.h
infinityis Mar 8, 2022
babb423
Modified Bongocat graphics to match original proportions
infinityis Mar 18, 2022
8dad775
Merge branch 'master' of cmk.github.com:qmk/qmk_firmware into evo70
infinityis Mar 18, 2022
7ab8f73
Merge branch 'evo70' of cmk.github.com:customMK/qmk_firmware into evo70
infinityis Mar 18, 2022
324e742
updated info.json device version
infinityis Mar 18, 2022
3b15a5b
updated OLED splash screen display timing
infinityis Mar 31, 2022
349459a
improved bongo cat tap detection and added backlight breathing to OLE…
infinityis Apr 1, 2022
7fb02a2
various improvements to OLED, saving settings, and VIA keymap fix
infinityis Apr 14, 2022
3fddc01
removed extraneous define
infinityis Apr 14, 2022
9ec87e6
custom encoder assignment retained upon powerup, backlight sleep upon…
infinityis Apr 20, 2022
5b8de2b
corrected bongo cat tap detection
infinityis Apr 20, 2022
aa98b0f
Changed splash screen and bongo cat encoder rotation to use the custo…
infinityis Apr 28, 2022
0ad421c
removed _default from LAYOUT naming and changed keyboard image to be …
infinityis Jul 16, 2022
47ad114
Force smaller version of image to be used in readme
infinityis Jul 17, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions keyboards/custommk/evo70/config.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
/* Copyright 2021 customMK
*
* 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"

/* key matrix size */
#define MATRIX_ROWS 6
#define MATRIX_COLS 14

infinityis marked this conversation as resolved.
Show resolved Hide resolved
#define BACKLIGHT_PIN B5

#define BACKLIGHT_LIMIT_VAL 255
#define BACKLIGHT_ON_STATE 0
#define BACKLIGHT_LEVELS 17
#define BACKLIGHT_BREATHING
#define BREATHING_PERIOD 6

#define ENCODERS_PAD_A { C7 }
#define ENCODERS_PAD_B { D5 }
#define ENCODER_RESOLUTION 2
#define TAP_CODE_DELAY 10

#define RGBLIGHT_EFFECT_BREATHING
#define RGBLIGHT_EFFECT_RAINBOW_MOOD
#define RGBLIGHT_EFFECT_RAINBOW_SWIRL
#define RGBLIGHT_EFFECT_SNAKE
#define RGBLIGHT_EFFECT_KNIGHT
#define RGBLIGHT_EFFECT_CHRISTMAS
#define RGBLIGHT_EFFECT_STATIC_GRADIENT
#define RGBLIGHT_EFFECT_RGB_TEST
#define RGBLIGHT_EFFECT_ALTERNATING
#define RGBLIGHT_EFFECT_TWINKLE
#define RGBLIGHT_LAYERS
#define RGBLIGHT_LIMIT_VAL 128
#define RGBLIGHT_DEFAULT_MODE RGBLIGHT_MODE_RAINBOW_SWIRL + 4
95 changes: 95 additions & 0 deletions keyboards/custommk/evo70/evo70.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
/* Copyright 2021 customMK
*
* 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 "evo70.h"
#include <stdbool.h>

/* Encoder Parameters */
uint8_t enc_mode = 0;

#define ENCODER_MATRIX_ROW 5
#define ENCODER_MATRIX_COL 6

#define ENC_VOLUME 0
#define ENC_MEDIA 1
#define ENC_CUSTOM 2
#define ENC_BL_BRIGHT 3
#define ENC_RGB_BRIGHT 4
#define ENC_RGB_MODE 5
#define ENC_RGB_COLOR 6
#define ENC_SCROLL 7

uint8_t num_enc_modes = 8;
uint16_t enc_cw[] = { KC_VOLU, KC_MEDIA_NEXT_TRACK, 0, 0, 0, 0, 0, KC_WH_D };
uint16_t enc_ccw[] = { KC_VOLD, KC_MEDIA_PREV_TRACK, 0, 0, 0, 0, 0, KC_WH_U };


__attribute__((weak)) void set_custom_encoder_mode_user(bool custom_encoder_mode) {}

void handle_encoder_switch_process_record(keyrecord_t *record) {

if (record->event.pressed) {
if (get_mods() & MOD_MASK_SHIFT) {
enc_mode = (enc_mode + (num_enc_modes- 1)) % num_enc_modes;
} else {
enc_mode = (enc_mode + 1) % num_enc_modes;
}
set_custom_encoder_mode_user(enc_mode == ENC_CUSTOM);
}
}

bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
if (record->event.key.row == ENCODER_MATRIX_ROW && record->event.key.col == ENCODER_MATRIX_COL){
handle_encoder_switch_process_record(record);
}
return process_record_user(keycode, record);
}

bool encoder_update_kb(uint8_t index, bool clockwise) {
if (!encoder_update_user(index, clockwise)) return false;
if (enc_mode == ENC_RGB_MODE) {
if (clockwise) {
rgblight_step();
} else {
rgblight_step_reverse();
}
} else if (enc_mode == ENC_RGB_BRIGHT) {
if (clockwise) {
rgblight_increase_val();
} else {
rgblight_decrease_val();
}
} else if (enc_mode == ENC_BL_BRIGHT) {
if (clockwise) {
backlight_increase();
} else {
backlight_decrease();
}
} else if (enc_mode == ENC_RGB_COLOR) {
if (clockwise) {
rgblight_increase_hue();
} else {
rgblight_decrease_hue();
}
} else {
if (clockwise) {
tap_code(enc_cw[enc_mode]);
} else {
tap_code(enc_ccw[enc_mode]);
}
}
return true;
}
34 changes: 34 additions & 0 deletions keyboards/custommk/evo70/evo70.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
/* Copyright 2021 customMK
*
* 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 LAYOUT_default( \
infinityis marked this conversation as resolved.
Show resolved Hide resolved
K11, K61, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E, \
K62, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2D, K2E, \
K66, K31, K63, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E, \
K57, K55, K41, K42, K43, K44, K45, K46, K47, K48, K49, K4A, K4B, K4C, K4D, K4E, \
K52, K54, K65, K51, K53, K56, K67, E00A, K59, K5A, E00B, K5C, K5D, K5E \
) { \
{ K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E }, \
{ K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2D, K2E }, \
{ K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E }, \
{ K41, K42, K43, K44, K45, K46, K47, K48, K49, K4A, K4B, K4C, K4D, K4E }, \
{ K51, K52, K53, K54, K55, K56, K57, E00A, K59, K5A, E00B, K5C, K5D, K5E }, \
{ K61, K62, K63, KC_NO, K65, K66, K67, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO } \
}
110 changes: 110 additions & 0 deletions keyboards/custommk/evo70/info.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
{
"keyboard_name": "EVO70",
"url": "https://www.customMK.com",
"maintainer": "customMK",
"tags": ["70%", "encoder", "underglow", "backlight"],
"usb": {
"vid": "0xF35B",
"pid": "0xFAB5",
"device_ver": "0x0001"
infinityis marked this conversation as resolved.
Show resolved Hide resolved
},
"diode_direction": "COL2ROW",
"matrix_pins": {
"cols": ["F1", "F4", "E6", "B1", "B7", "B0", "E2", "D4", "D6", "D7", "B4", "B3", "B6", "C6"],
"rows": ["D3", "D2", "F7", "F6", "F5", "F0"]

},
"debounce": 5,
"processor": "atmega32u4",
"rgblight": {
"led_count": 48,
"pin": "B2",
"hue_steps": 4,
"saturation_steps": 8,
"brightness_steps": 4,
"animations": {
"all": true
}
},
"layouts": {
"LAYOUT_default": {
infinityis marked this conversation as resolved.
Show resolved Hide resolved
"layout": [
{"label":"KC_ESC", "x":2.5, "y":1.1},
{"label":"KC_1", "x":3.5, "y":1.1},
{"label":"KC_2", "x":4.5, "y":1.1},
{"label":"KC_3", "x":5.5, "y":1.1},
{"label":"KC_4", "x":6.5, "y":1.1},
{"label":"KC_5", "x":7.5, "y":1.1},
{"label":"KC_6", "x":8.5, "y":1.1},
{"label":"KC_7", "x":9.5, "y":1.1},
{"label":"KC_8", "x":10.5, "y":1.1},
{"label":"KC_9", "x":11.5, "y":1.1},
{"label":"KC_0", "x":12.5, "y":1.1},
{"label":"KC_MINS", "x":13.5, "y":1.1},
{"label":"KC_EQL", "x":14.5, "y":1.1},
{"label":"KC_BSPC", "x":15.5, "y":1.1, "w":2},
{"label":"KC_DEL", "x":17.5, "y":1.1},
{"label":"KC_TAB", "x":2.5, "y":2.1, "w":1.5},
{"label":"KC_Q", "x":4, "y":2.1},
{"label":"KC_W", "x":5, "y":2.1},
{"label":"KC_E", "x":6, "y":2.1},
{"label":"KC_R", "x":7, "y":2.1},
{"label":"KC_T", "x":8, "y":2.1},
{"label":"KC_Y", "x":9, "y":2.1},
{"label":"KC_U", "x":10, "y":2.1},
{"label":"KC_I", "x":11, "y":2.1},
{"label":"KC_O", "x":12, "y":2.1},
{"label":"KC_P", "x":13, "y":2.1},
{"label":"KC_LBRC", "x":14, "y":2.1},
{"label":"KC_RBRC", "x":15, "y":2.1},
{"label":"KC_BSLS", "x":16, "y":2.1, "w":1.5},
{"label":"KC_PGUP", "x":17.5, "y":2.1},
{"label":"KC_F1", "x":0, "y":3.1},
{"label":"KC_F2", "x":1, "y":3.1},
{"label":"KC_CAPS", "x":2.5, "y":3.1, "w":1.75},
{"label":"KC_A", "x":4.25, "y":3.1},
{"label":"KC_S", "x":5.25, "y":3.1},
{"label":"KC_D", "x":6.25, "y":3.1},
{"label":"KC_F", "x":7.25, "y":3.1},
{"label":"KC_G", "x":8.25, "y":3.1},
{"label":"KC_H", "x":9.25, "y":3.1},
{"label":"KC_J", "x":10.25, "y":3.1},
{"label":"KC_K", "x":11.25, "y":3.1},
{"label":"KC_L", "x":12.25, "y":3.1},
{"label":"KC_SCLN", "x":13.25, "y":3.1},
{"label":"KC_QUOT", "x":14.25, "y":3.1},
{"label":"KC_ENT", "x":15.25, "y":3.1, "w":2.25},
{"label":"KC_PGDN", "x":17.5, "y":3.1},
{"label":"KC_F3", "x":0, "y":4.1},
{"label":"KC_F4", "x":1, "y":4.1},
{"label":"KC_LSFT", "x":2.5, "y":4.1, "w":2.25},
{"label":"KC_Z", "x":4.75, "y":4.1},
{"label":"KC_X", "x":5.75, "y":4.1},
{"label":"KC_C", "x":6.75, "y":4.1},
{"label":"KC_V", "x":7.75, "y":4.1},
{"label":"KC_B", "x":8.75, "y":4.1},
{"label":"KC_N", "x":9.75, "y":4.1},
{"label":"KC_M", "x":10.75, "y":4.1},
{"label":"KC_COMM", "x":11.75, "y":4.1},
{"label":"KC_DOT", "x":12.75, "y":4.1},
{"label":"KC_SLSH", "x":13.75, "y":4.1},
{"label":"KC_RSFT", "x":14.75, "y":4.1, "w":1.75},
{"label":"KC_UP", "x":16.5, "y":4.1},
{"label":"KC_END", "x":17.5, "y":4.1},
{"label":"KC_F5", "x":0, "y":5.1},
{"label":"KC_F6", "x":1, "y":5.1},
{"label":"KC_LCTL", "x":2.5, "y":5.1, "w":1.25},
{"label":"KC_LGUI", "x":3.75, "y":5.1, "w":1.25},
{"label":"KC_LALT", "x":5, "y":5.1, "w":1.25},
{"label":"KC_SPC", "x":6.25, "y":5.1, "w":6.25},
{"label":"KC_TRNS", "x":0.5, "y":1.1},
{"label":"KC_VOLD", "x":0, "y":0},
{"label":"KC_RALT", "x":12.5, "y":5.1, "w":1.25},
{"label":"KC_RCTL", "x":13.75, "y":5.1, "w":1.25},
{"label":"KC_VOLU", "x":1, "y":0},
{"label":"KC_LEFT", "x":15.5, "y":5.1},
{"label":"KC_DOWN", "x":16.5, "y":5.1},
{"label":"KC_RGHT", "x":17.5, "y":5.1}]
}
}
}
49 changes: 49 additions & 0 deletions keyboards/custommk/evo70/keymaps/default/keymap.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
/* Copyright 2021 customMK
*
* 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

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {

[0] = LAYOUT_default(
infinityis marked this conversation as resolved.
Show resolved Hide resolved
KC_GESC, 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_DEL,
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_PGUP,
KC_F1, KC_F2, 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_PGDN,
KC_F3, KC_F4, 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_UP, KC_END,
KC_F5, KC_F6, KC_LCTL, KC_LWIN, KC_LALT, KC_SPACE, KC_TRNS, KC_VOLD, KC_RALT, KC_RCTL, KC_VOLU, KC_LEFT, KC_DOWN, KC_RGHT),

[1] = LAYOUT_default(
infinityis marked this conversation as resolved.
Show resolved Hide resolved
RESET, 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_TRNS, KC_TRNS,
KC_TRNS, KC_TRNS, KC_BSLS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
KC_F7, KC_F8, KC_TRNS, BL_TOGG, BL_STEP, BL_BRTG, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
KC_F9, KC_F10, KC_TRNS, RGB_TOG, RGB_MOD, RGB_RMOD, RGB_VAI, RGB_VAD, RGB_HUI, RGB_HUD, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
KC_F11, KC_F12, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS),

[2] = LAYOUT_default(
infinityis marked this conversation as resolved.
Show resolved Hide resolved
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS),

[3] = LAYOUT_default(
infinityis marked this conversation as resolved.
Show resolved Hide resolved
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS),

};
3 changes: 3 additions & 0 deletions keyboards/custommk/evo70/keymaps/default/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Default EVO70 Layout

This is the default layout for EVO70.
Loading