mirror of
https://github.com/qmk/qmk_firmware.git
synced 2024-11-21 19:09:25 +00:00
Compare commits
18 Commits
d2a79402e0
...
74f2316de5
Author | SHA1 | Date | |
---|---|---|---|
|
74f2316de5 | ||
|
9bea332a21 | ||
|
8cbcdcac62 | ||
|
7e06bc8136 | ||
|
c07e6a4645 | ||
|
d4374bfe46 | ||
|
00d0630b0f | ||
|
7033d079fe | ||
|
00e8f38ace | ||
|
35b35df7ec | ||
|
bdc2c2dd43 | ||
|
f7bfe55a64 | ||
|
a47feed49e | ||
|
b06605d3a5 | ||
|
9f8ba59ac1 | ||
|
f50e487be9 | ||
|
d32390a217 | ||
|
af56e19270 |
52
keyboards/macroflow_original/keyboard.json
Normal file
52
keyboards/macroflow_original/keyboard.json
Normal file
@ -0,0 +1,52 @@
|
||||
{
|
||||
"manufacturer": "Customacros",
|
||||
"keyboard_name": "Macroflow Original",
|
||||
"maintainer": "Patrickemm",
|
||||
"diode_direction": "COL2ROW",
|
||||
"features": {
|
||||
"bootmagic": true,
|
||||
"extrakey": true,
|
||||
"mousekey": true,
|
||||
"nkro": true,
|
||||
"encoder": true,
|
||||
"oled": true
|
||||
},
|
||||
"matrix_pins": {
|
||||
"cols": ["B1", "B3", "B2", "F7"],
|
||||
"rows": ["E6", "B4", "B5"]
|
||||
},
|
||||
"development_board": "promicro",
|
||||
"url": "https://github.com/Patrickemm",
|
||||
"usb": {
|
||||
"device_version": "1.0.0",
|
||||
"pid": "0x0002",
|
||||
"vid": "0x504D"
|
||||
},
|
||||
"dynamic_keymap": {
|
||||
"layer_count": 8
|
||||
},
|
||||
"layouts": {
|
||||
"LAYOUT": {
|
||||
"layout": [
|
||||
|
||||
{"matrix": [0, 0], "x": 0, "y": 0},
|
||||
{"matrix": [0, 3], "x": 3, "y": 0},
|
||||
|
||||
{"matrix": [1, 0], "x": 0, "y": 1},
|
||||
{"matrix": [1, 1], "x": 1, "y": 1},
|
||||
{"matrix": [1, 2], "x": 2, "y": 1},
|
||||
{"matrix": [1, 3], "x": 3, "y": 1},
|
||||
|
||||
{"matrix": [2, 0], "x": 0, "y": 2},
|
||||
{"matrix": [2, 1], "x": 1, "y": 2},
|
||||
{"matrix": [2, 2], "x": 2, "y": 2},
|
||||
{"matrix": [2, 3], "x": 3, "y": 2}
|
||||
]
|
||||
}
|
||||
},
|
||||
"encoder": {
|
||||
"rotary": [
|
||||
{"pin_b": "F5", "pin_a": "F4"}
|
||||
]
|
||||
}
|
||||
}
|
101
keyboards/macroflow_original/keymaps/default/keymap.c
Normal file
101
keyboards/macroflow_original/keymaps/default/keymap.c
Normal file
@ -0,0 +1,101 @@
|
||||
// Copyright 2024 Patrick Mathern (@Patrickemm)
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#include QMK_KEYBOARD_H
|
||||
|
||||
// Define the keycode, `QK_USER` avoids collisions with existing keycodes
|
||||
enum keycodes {
|
||||
KC_CYCLE_LAYERS = QK_USER,
|
||||
};
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
|
||||
[0] = LAYOUT(
|
||||
KC_0, KC_CYCLE_LAYERS,
|
||||
KC_1, KC_2, KC_3, KC_4,
|
||||
KC_5, KC_6, KC_7, KC_8
|
||||
),
|
||||
[1] = LAYOUT(
|
||||
KC_9, KC_CYCLE_LAYERS,
|
||||
KC_A, KC_B, KC_C, KC_D,
|
||||
KC_E, KC_F, KC_G, KC_H
|
||||
),
|
||||
[2] = LAYOUT(
|
||||
KC_I, KC_CYCLE_LAYERS,
|
||||
KC_J, KC_K, KC_L, KC_M,
|
||||
KC_N, KC_O, KC_P, KC_Q
|
||||
),
|
||||
[3] = LAYOUT(
|
||||
KC_R, KC_CYCLE_LAYERS,
|
||||
KC_S, KC_T, KC_U, KC_V,
|
||||
KC_W, KC_X, KC_Y, KC_Z
|
||||
),
|
||||
[4] = LAYOUT(
|
||||
KC_TRNS, KC_CYCLE_LAYERS,
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
|
||||
),
|
||||
[5] = LAYOUT(
|
||||
KC_TRNS, KC_CYCLE_LAYERS,
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
|
||||
),
|
||||
[6] = LAYOUT(
|
||||
KC_TRNS, KC_CYCLE_LAYERS,
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
|
||||
),
|
||||
[7] = LAYOUT(
|
||||
KC_TRNS, KC_CYCLE_LAYERS,
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
|
||||
)
|
||||
};
|
||||
|
||||
// 1st layer on the cycle
|
||||
#define LAYER_CYCLE_START 0
|
||||
// Last layer on the cycle
|
||||
#define LAYER_CYCLE_END 7
|
||||
|
||||
// Add the behaviour of this new keycode
|
||||
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||
switch (keycode) {
|
||||
case KC_CYCLE_LAYERS:
|
||||
// Our logic will happen on presses, nothing is done on releases
|
||||
if (!record->event.pressed) {
|
||||
// We've already handled the keycode (doing nothing), let QMK know so no further code is run unnecessarily
|
||||
return false;
|
||||
}
|
||||
|
||||
uint8_t current_layer = get_highest_layer(layer_state);
|
||||
|
||||
// Check if we are within the range, if not quit
|
||||
if (current_layer > LAYER_CYCLE_END || current_layer < LAYER_CYCLE_START) {
|
||||
return false;
|
||||
}
|
||||
|
||||
uint8_t next_layer = current_layer + 1;
|
||||
if (next_layer > LAYER_CYCLE_END) {
|
||||
next_layer = LAYER_CYCLE_START;
|
||||
}
|
||||
layer_move(next_layer);
|
||||
return false;
|
||||
|
||||
// Process other keycodes normally
|
||||
default:
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
#if defined(ENCODER_MAP_ENABLE)
|
||||
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][NUM_DIRECTIONS] = {
|
||||
[0] = { ENCODER_CCW_CW(KC_MS_WH_UP, KC_MS_WH_DOWN) },
|
||||
[1] = { ENCODER_CCW_CW(KC_MS_WH_UP, KC_MS_WH_DOWN) },
|
||||
[2] = { ENCODER_CCW_CW(KC_MS_WH_UP, KC_MS_WH_DOWN) },
|
||||
[3] = { ENCODER_CCW_CW(KC_MS_WH_UP, KC_MS_WH_DOWN) },
|
||||
[4] = { ENCODER_CCW_CW(KC_MS_WH_UP, KC_MS_WH_DOWN) },
|
||||
[5] = { ENCODER_CCW_CW(KC_MS_WH_UP, KC_MS_WH_DOWN) },
|
||||
[6] = { ENCODER_CCW_CW(KC_MS_WH_UP, KC_MS_WH_DOWN) },
|
||||
[7] = { ENCODER_CCW_CW(KC_MS_WH_UP, KC_MS_WH_DOWN) }
|
||||
};
|
||||
#endif
|
1
keyboards/macroflow_original/keymaps/default/rules.mk
Normal file
1
keyboards/macroflow_original/keymaps/default/rules.mk
Normal file
@ -0,0 +1 @@
|
||||
ENCODER_MAP_ENABLE = yes
|
200
keyboards/macroflow_original/macroflow_original.c
Normal file
200
keyboards/macroflow_original/macroflow_original.c
Normal file
@ -0,0 +1,200 @@
|
||||
// Copyright 2024 Patrick Mathern (@Patrickemm)
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#include "quantum.h"
|
||||
|
||||
static uint16_t oled_logo_timer = 0;
|
||||
static bool has_startup_ran = false;
|
||||
|
||||
#ifndef SHOW_LOGO
|
||||
# define SHOW_LOGO 2500
|
||||
#endif
|
||||
|
||||
enum layer_names {
|
||||
one,
|
||||
two,
|
||||
three,
|
||||
four,
|
||||
five,
|
||||
six,
|
||||
seven,
|
||||
eight
|
||||
};
|
||||
|
||||
oled_rotation_t oled_init_kb(oled_rotation_t rotation) {
|
||||
return OLED_ROTATION_180;
|
||||
}
|
||||
|
||||
bool oled_task_kb(void) {
|
||||
if (!oled_task_user()) {
|
||||
return false;
|
||||
}
|
||||
if (!has_startup_ran) {
|
||||
static const char startUp [] PROGMEM = {
|
||||
// 'startUp', 128x32px
|
||||
0, 0, 0,128,192,192,128,128, 0, 0,192,192, 0, 0, 0,192,192, 0, 0,128,128,192,192,128, 0, 0,192,192,192,192,192,192,192, 0, 0,128,128,192,192,128, 0, 0, 0,192,192,128, 0, 0, 0, 0,192,192,128, 0, 0, 0,128,192,192, 0, 0, 0, 0, 0,128,128,192,192,128, 0, 0,128,192,192,192,192,128,128, 0, 0, 0,128,192,192,192,128, 0, 0, 0,128,128,192,192,128, 0, 0, 0, 0, 0, 0, 0,128,192,192,128, 0, 0, 0, 0,128,192,192,128,128, 0, 0,192,192,192, 0, 0, 0, 0,128,192,192, 0,0,
|
||||
0, 0,255,255, 1, 1, 1, 31, 30, 0,255,255, 0, 0, 0,255,255, 0, 30,127,241,193,129, 7, 15, 0, 1, 1, 1,255,255, 1, 1, 0,254,255, 1, 1, 1,255,255, 0, 0,255, 63,255,224, 0,128,254, 63,255,255, 0, 0,224,255, 15,127,255,192, 0, 0,254,255, 1, 1, 1, 31, 31, 0,255,255,129,129,129,255,127, 0, 0,255,255, 1, 1, 1,255,255, 0, 30,127,241,193,129, 7, 15, 0, 0, 0, 0,252,255, 3, 1, 1, 3, 31, 30, 0,255,255, 1, 1, 1,255,254, 0,255,255,127,252, 0, 0,240,255,255,255, 0, 0, 0, 0,255,255,128,128,192,252, 60, 0,127,255,128,128,128,255,127, 0,120,248,128,129,131,255,254, 0, 0, 0, 0,255,255, 0, 0, 0,127,255,128,128,128,255,255, 0, 0,255, 0, 3,255,248,255, 15, 0,255,255, 0,248,255, 27, 24, 24, 63,255,224, 0,127,255,128,128,128,252,124, 0,255,255, 3, 1, 3,127,254,240, 0,127,255,128,128,128,255,127, 0,120,248,128,129,131,255,254, 0,128,128, 0, 63,255,192,128,128,224,252, 60, 0,255,255,128,128,128,255,127, 0,255,255, 0, 31,255,252,127, 1,255,255, 0, 0,0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0
|
||||
};
|
||||
oled_write_raw_P(startUp, sizeof(startUp));
|
||||
if (timer_elapsed(oled_logo_timer) >= SHOW_LOGO) {
|
||||
has_startup_ran = true;
|
||||
oled_clear();
|
||||
}
|
||||
} else {
|
||||
static const char PROGMEM layerImage[4][67+1] = {
|
||||
{ 224,224,224,224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,224,224,224,224,224, 0, 0, 0, 0, 0,224,224,224,128, 0, 0, 0, 0,128,224,224,224, 0, 0, 0,224,224,224,224,224,224,224,224,224,224,224, 0, 0,224,224,224,224,224,224,224,224,224,192,128, 0 },
|
||||
{ 255,255,255,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,240,255,255,127, 15,127,255,255,240, 0, 0, 0, 0, 3, 15,127,252,240,240,252,127, 15, 3, 0, 0, 0, 0,255,255,255,255,192,192,192,192,192, 0, 0, 0, 0,255,255,255,255,192,192,192,225,255,255,255,127 },
|
||||
{ 255,255,255,255,192,192,192,192,192,192,192, 0, 0,192,254,255,255,127, 28, 28, 28,127,255,255,254,192, 0, 0, 0, 0, 0,255,255,255,255, 0, 0, 0, 0, 0, 0, 0,255,255,255,255,129,129,129,129,129,128,128, 0, 0,255,255,255,255, 1, 1, 7,127,255,255,248,192 },
|
||||
{ 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 3, 3, 3, 3 },
|
||||
};
|
||||
|
||||
static const char PROGMEM layer1[4][30+1] = {
|
||||
{ 128,224,240,240,248,248,248,248,248,248,248,120,120, 56, 56, 24, 24, 24,248,248,248,248,248,248,248,248,240,240,224,128 },
|
||||
{ 255,255,255,255,255,255,255,255,255,255,255,252,252,252, 0, 0, 0, 0,255,255,255,255,255,255,255,255,255,255,255,255 },
|
||||
{ 255,255,255,255,255,255,255,255,255,255,255,255,255,255, 0, 0, 0, 0,255,255,255,255,255,255,255,255,255,255,255,255 },
|
||||
{ 1, 7, 15, 15, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 28, 28, 28, 28, 31, 31, 31, 31, 31, 31, 31, 31, 15, 15, 7, 1 }
|
||||
};
|
||||
|
||||
static const char PROGMEM layer2[4][30+1] = {
|
||||
{ 128,224,240,240,248,248,248,248,248,248,120, 56, 24, 24, 24, 24, 24, 24, 56,120,248,248,248,248,248,248,240,240,224,128 },
|
||||
{ 255,255,255,255,255,255,255,255,255,255,248,248,248,254,255, 63, 6, 0,128,224,255,255,255,255,255,255,255,255,255,255 },
|
||||
{ 255,255,255,255,255,255,255,255,255,255, 63, 15, 7, 1, 64,112,120,126,127,127,255,255,255,255,255,255,255,255,255,255 },
|
||||
{ 1, 7, 15, 15, 31, 31, 31, 31, 31, 31, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 31, 31, 31, 31, 31, 31, 15, 15, 7, 1 }
|
||||
};
|
||||
|
||||
static const char PROGMEM layer3[4][30+1] = {
|
||||
{ 128,224,240,240,248,248,248,248,248,248,120, 56, 24, 24, 24, 24, 24, 24, 56,120,248,248,248,248,248,248,240,240,224,128 },
|
||||
{ 255,255,255,255,255,255,255,255,255,255,248,248,248, 62, 63, 63, 30, 0,128,192,255,255,255,255,255,255,255,255,255,255 },
|
||||
{ 255,255,255,255,255,255,255,255,255,255, 31, 31, 31,126,254,254,124, 0, 0, 1,255,255,255,255,255,255,255,255,255,255 },
|
||||
{ 1, 7, 15, 15, 31, 31, 31, 31, 31, 31, 30, 28, 24, 24, 24, 24, 24, 24, 28, 30, 31, 31, 31, 31, 31, 31, 15, 15, 7, 1 }
|
||||
};
|
||||
|
||||
static const char PROGMEM layer4[4][30+1] = {
|
||||
{ 128,224,240,240,248,248,248,248,248,248,248,248,248,248,120, 24, 24, 24, 24,248,248,248,248,248,248,248,240,240,224,128 },
|
||||
{ 255,255,255,255,255,255,255,255,255,255,255, 63, 7, 1,192,240, 0, 0, 0,255,255,255,255,255,255,255,255,255,255,255 },
|
||||
{ 255,255,255,255,255,255,255,255,255,255,192,192,192,194,195,195, 0, 0, 0,195,195,255,255,255,255,255,255,255,255,255 },
|
||||
{ 1, 7, 15, 15, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 28, 28, 28, 31, 31, 31, 31, 31, 31, 31, 15, 15, 7, 1 }
|
||||
};
|
||||
|
||||
static const char PROGMEM layer5[4][30+1] = {
|
||||
{ 128,224,240,240,248,248,248,248,248,248, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24,248,248,248,248,248,248,240,240,224,128 },
|
||||
{ 255,255,255,255,255,255,255,255,255,255, 0, 0, 0, 0,143,143,143, 15, 15, 31,255,255,255,255,255,255,255,255,255,255 },
|
||||
{ 255,255,255,255,255,255,255,255,255,255,142, 14, 14, 30,127,127,127, 0, 0, 0,224,255,255,255,255,255,255,255,255,255 },
|
||||
{ 1, 7, 15, 15, 31, 31, 31, 31, 31, 31, 31, 30, 28, 28, 28, 28, 28, 28, 30, 31, 31, 31, 31, 31, 31, 31, 15, 15, 7, 1 }
|
||||
};
|
||||
|
||||
static const char PROGMEM layer6[4][30+1] = {
|
||||
{ 128,224,240,240,248,248,248,248,248,248,248, 56, 24, 24, 24, 24, 24, 24, 24, 56,248,248,248,248,248,248,240,240,224,128 },
|
||||
{ 255,255,255,255,255,255,255,255,255,255, 0, 0, 0, 0, 31, 31, 31, 24, 24, 56,255,255,255,255,255,255,255,255,255,255 },
|
||||
{ 255,255,255,255,255,255,255,255,255,255,128, 0, 0, 0,127,127,127, 0, 0, 0,128,255,255,255,255,255,255,255,255,255 },
|
||||
{ 1, 7, 15, 15, 31, 31, 31, 31, 31, 31, 31, 30, 28, 28, 28, 28, 28, 28, 28, 30, 31, 31, 31, 31, 31, 31, 15, 15, 7, 1 }
|
||||
};
|
||||
|
||||
static const char PROGMEM layer7[4][30+1] = {
|
||||
{ 128,224,240,240,248,248,248,248,248,248, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24,248,248,248,248,248,248,240,240,224,128 },
|
||||
{ 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, 31, 3, 0,128,248,255,255,255,255,255,255,255,255,255,255 },
|
||||
{ 255,255,255,255,255,255,255,255,255,255,255,255,127, 15, 1, 0,192,252,255,255,255,255,255,255,255,255,255,255,255,255 },
|
||||
{ 1, 7, 15, 15, 31, 31, 31, 31, 31, 31, 31, 31, 28, 28, 28, 28, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 15, 15, 7, 1 }
|
||||
};
|
||||
|
||||
static const char PROGMEM layer8[4][30+1] = {
|
||||
{ 128,224,240,240,248,248,248,248,248,248,248, 56, 24, 24, 24, 24, 24, 24, 24, 56,248,248,248,248,248,248,240,240,224,128 },
|
||||
{ 255,255,255,255,255,255,255,255,255,255,224,128, 0, 0, 31, 31, 31, 0, 0,128,224,255,255,255,255,255,255,255,255,255 },
|
||||
{ 255,255,255,255,255,255,255,255,255,255,129, 0, 0, 0,126,126,126, 0, 0, 0,129,255,255,255,255,255,255,255,255,255 },
|
||||
{ 1, 7, 15, 15, 31, 31, 31, 31, 31, 31, 31, 30, 28, 28, 28, 28, 28, 28, 28, 30, 31, 31, 31, 31, 31, 31, 15, 15, 7, 1 }
|
||||
};
|
||||
|
||||
oled_set_cursor(1, 0); // start pos
|
||||
oled_write_raw_P(layerImage[0], sizeof(layerImage[0]));
|
||||
oled_set_cursor(1, 1); // move to next line
|
||||
oled_write_raw_P(layerImage[1], sizeof(layerImage[1]));
|
||||
oled_set_cursor(1, 2); // move to next line
|
||||
oled_write_raw_P(layerImage[2], sizeof(layerImage[2]));
|
||||
oled_set_cursor(1, 3); // move to next line
|
||||
oled_write_raw_P(layerImage[3], sizeof(layerImage[3]));
|
||||
|
||||
switch (get_highest_layer(layer_state)) {
|
||||
case one :
|
||||
oled_set_cursor(16, 0); // move 20 columns out
|
||||
oled_write_raw_P(layer1[0], sizeof(layer1[0]));
|
||||
oled_set_cursor(16, 1); // move 20 columns out
|
||||
oled_write_raw_P(layer1[1], sizeof(layer1[1]));
|
||||
oled_set_cursor(16, 2); // move 20 columns out
|
||||
oled_write_raw_P(layer1[2], sizeof(layer1[2]));
|
||||
oled_set_cursor(16, 3); // move 20 columns out
|
||||
oled_write_raw_P(layer1[3], sizeof(layer1[3]));
|
||||
break;
|
||||
case two :
|
||||
oled_set_cursor(16, 0); // move 20 columns out
|
||||
oled_write_raw_P(layer2[0], sizeof(layer2[0]));
|
||||
oled_set_cursor(16, 1); // move 20 columns out
|
||||
oled_write_raw_P(layer2[1], sizeof(layer2[1]));
|
||||
oled_set_cursor(16, 2); // move 20 columns out
|
||||
oled_write_raw_P(layer2[2], sizeof(layer2[2]));
|
||||
oled_set_cursor(16, 3); // move 20 columns out
|
||||
oled_write_raw_P(layer2[3], sizeof(layer2[3]));
|
||||
break;
|
||||
case three :
|
||||
oled_set_cursor(16, 0); // move 20 columns out
|
||||
oled_write_raw_P(layer3[0], sizeof(layer3[0]));
|
||||
oled_set_cursor(16, 1); // move 20 columns out
|
||||
oled_write_raw_P(layer3[1], sizeof(layer3[1]));
|
||||
oled_set_cursor(16, 2); // move 20 columns out
|
||||
oled_write_raw_P(layer3[2], sizeof(layer3[2]));
|
||||
oled_set_cursor(16, 3); // move 20 columns out
|
||||
oled_write_raw_P(layer3[3], sizeof(layer3[3]));
|
||||
break;
|
||||
case four :
|
||||
oled_set_cursor(16, 0); // move 20 columns out
|
||||
oled_write_raw_P(layer4[0], sizeof(layer4[0]));
|
||||
oled_set_cursor(16, 1); // move 20 columns out
|
||||
oled_write_raw_P(layer4[1], sizeof(layer4[1]));
|
||||
oled_set_cursor(16, 2); // move 20 columns out
|
||||
oled_write_raw_P(layer4[2], sizeof(layer4[2]));
|
||||
oled_set_cursor(16, 3); // move 20 columns out
|
||||
oled_write_raw_P(layer4[3], sizeof(layer4[3]));
|
||||
break;
|
||||
case five :
|
||||
oled_set_cursor(16, 0); // move 20 columns out
|
||||
oled_write_raw_P(layer5[0], sizeof(layer5[0]));
|
||||
oled_set_cursor(16, 1); // move 20 columns out
|
||||
oled_write_raw_P(layer5[1], sizeof(layer5[1]));
|
||||
oled_set_cursor(16, 2); // move 20 columns out
|
||||
oled_write_raw_P(layer5[2], sizeof(layer5[2]));
|
||||
oled_set_cursor(16, 3); // move 20 columns out
|
||||
oled_write_raw_P(layer5[3], sizeof(layer5[3]));
|
||||
break;
|
||||
case six :
|
||||
oled_set_cursor(16, 0); // move 20 columns out
|
||||
oled_write_raw_P(layer6[0], sizeof(layer6[0]));
|
||||
oled_set_cursor(16, 1); // move 20 columns out
|
||||
oled_write_raw_P(layer6[1], sizeof(layer6[1]));
|
||||
oled_set_cursor(16, 2); // move 20 columns out
|
||||
oled_write_raw_P(layer6[2], sizeof(layer6[2]));
|
||||
oled_set_cursor(16, 3); // move 20 columns out
|
||||
oled_write_raw_P(layer6[3], sizeof(layer6[3]));
|
||||
break;
|
||||
case seven :
|
||||
oled_set_cursor(16, 0); // move 20 columns out
|
||||
oled_write_raw_P(layer7[0], sizeof(layer7[0]));
|
||||
oled_set_cursor(16, 1); // move 20 columns out
|
||||
oled_write_raw_P(layer7[1], sizeof(layer7[1]));
|
||||
oled_set_cursor(16, 2); // move 20 columns out
|
||||
oled_write_raw_P(layer7[2], sizeof(layer7[2]));
|
||||
oled_set_cursor(16, 3); // move 20 columns out
|
||||
oled_write_raw_P(layer7[3], sizeof(layer7[3]));
|
||||
break;
|
||||
case eight :
|
||||
oled_set_cursor(16, 0); // move 20 columns out
|
||||
oled_write_raw_P(layer8[0], sizeof(layer8[0]));
|
||||
oled_set_cursor(16, 1); // move 20 columns out
|
||||
oled_write_raw_P(layer8[1], sizeof(layer8[1]));
|
||||
oled_set_cursor(16, 2); // move 20 columns out
|
||||
oled_write_raw_P(layer8[2], sizeof(layer8[2]));
|
||||
oled_set_cursor(16, 3); // move 20 columns out
|
||||
oled_write_raw_P(layer8[3], sizeof(layer8[3]));
|
||||
break;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
27
keyboards/macroflow_original/readme.md
Normal file
27
keyboards/macroflow_original/readme.md
Normal file
@ -0,0 +1,27 @@
|
||||
# macroflow_original
|
||||
|
||||
![Imgur](https://i.imgur.com/hIytJTl.png)
|
||||
|
||||
*A 2x4 macropad with a built in encoder and OLED screen*
|
||||
|
||||
* Keyboard Maintainer: [Patrickemm](https://github.com/Patrickemm)
|
||||
* Hardware Supported: *Pro Micro compatible development board*
|
||||
* Hardware Availability: *https://www.ebay.com/usr/handycache*
|
||||
|
||||
Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
make macroflow_original:default
|
||||
|
||||
Flashing example for this keyboard:
|
||||
|
||||
make macroflow_original:default:flash
|
||||
|
||||
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).
|
||||
|
||||
## Bootloader
|
||||
|
||||
Enter the bootloader in 3 ways:
|
||||
|
||||
* **Bootmagic reset**: Hold down the key at (0,0) in the matrix (usually the top left key or Escape) and plug in the keyboard
|
||||
* **Physical reset button**: Briefly press the button on the back of the PCB - some may have pads you must short instead
|
||||
* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available
|
@ -1,5 +1,6 @@
|
||||
"""This script automates the copying of the default keymap into your own keymap.
|
||||
"""
|
||||
import re
|
||||
import shutil
|
||||
|
||||
from milc import cli
|
||||
@ -13,6 +14,13 @@ from qmk.keyboard import keyboard_completer, keyboard_folder
|
||||
from qmk.userspace import UserspaceDefs
|
||||
|
||||
|
||||
def validate_keymap_name(name):
|
||||
"""Returns True if the given keymap name contains only a-z, 0-9 and underscore characters.
|
||||
"""
|
||||
regex = re.compile(r'^[a-zA-Z0-9][a-zA-Z0-9_]+$')
|
||||
return bool(regex.match(name))
|
||||
|
||||
|
||||
def prompt_keyboard():
|
||||
prompt = """{fg_yellow}Select Keyboard{style_reset_all}
|
||||
If you`re unsure you can view a full list of supported keyboards with {fg_yellow}qmk list-keyboards{style_reset_all}.
|
||||
@ -60,6 +68,10 @@ def new_keymap(cli):
|
||||
cli.log.error(f'Default keymap {{fg_cyan}}{keymap_path_default}{{fg_reset}} does not exist!')
|
||||
return False
|
||||
|
||||
if not validate_keymap_name(user_name):
|
||||
cli.log.error('Keymap names must contain only {fg_cyan}a-z{fg_reset}, {fg_cyan}0-9{fg_reset} and {fg_cyan}_{fg_reset}! Please choose a different name.')
|
||||
return False
|
||||
|
||||
if keymap_path_new.exists():
|
||||
cli.log.error(f'Keymap {{fg_cyan}}{user_name}{{fg_reset}} already exists! Please choose a different name.')
|
||||
return False
|
||||
|
@ -29,6 +29,7 @@ def _convert_macros(via_macros):
|
||||
if len(via_macros) == 0:
|
||||
return list()
|
||||
split_regex = re.compile(r'(}\,)|(\,{)')
|
||||
macro_group_regex = re.compile(r'({.+?})')
|
||||
macros = list()
|
||||
for via_macro in via_macros:
|
||||
# Split VIA macro to its elements
|
||||
@ -38,13 +39,28 @@ def _convert_macros(via_macros):
|
||||
macro_data = list()
|
||||
for m in macro:
|
||||
if '{' in m or '}' in m:
|
||||
# Found keycode(s)
|
||||
keycodes = m.split(',')
|
||||
# Remove whitespaces and curly braces from around keycodes
|
||||
keycodes = list(map(lambda s: s.strip(' {}'), keycodes))
|
||||
# Remove the KC prefix
|
||||
keycodes = list(map(lambda s: s.replace('KC_', ''), keycodes))
|
||||
macro_data.append({"action": "tap", "keycodes": keycodes})
|
||||
# Split macro groups
|
||||
macro_groups = macro_group_regex.findall(m)
|
||||
for macro_group in macro_groups:
|
||||
# Remove whitespaces and curly braces from around group
|
||||
macro_group = macro_group.strip(' {}')
|
||||
|
||||
macro_action = 'tap'
|
||||
macro_keycodes = []
|
||||
|
||||
if macro_group[0] == '+':
|
||||
macro_action = 'down'
|
||||
macro_keycodes.append(macro_group[1:])
|
||||
elif macro_group[0] == '-':
|
||||
macro_action = 'up'
|
||||
macro_keycodes.append(macro_group[1:])
|
||||
else:
|
||||
macro_keycodes.extend(macro_group.split(',') if ',' in macro_group else [macro_group])
|
||||
|
||||
# Remove the KC prefixes
|
||||
macro_keycodes = list(map(lambda s: s.replace('KC_', ''), macro_keycodes))
|
||||
|
||||
macro_data.append({"action": macro_action, "keycodes": macro_keycodes})
|
||||
else:
|
||||
# Found text
|
||||
macro_data.append(m)
|
||||
@ -54,13 +70,13 @@ def _convert_macros(via_macros):
|
||||
|
||||
|
||||
def _fix_macro_keys(keymap_data):
|
||||
macro_no = re.compile(r'MACRO0?([0-9]{1,2})')
|
||||
macro_no = re.compile(r'MACRO0?\(([0-9]{1,2})\)')
|
||||
for i in range(0, len(keymap_data)):
|
||||
for j in range(0, len(keymap_data[i])):
|
||||
kc = keymap_data[i][j]
|
||||
m = macro_no.match(kc)
|
||||
if m:
|
||||
keymap_data[i][j] = f'MACRO_{m.group(1)}'
|
||||
keymap_data[i][j] = f'MC_{m.group(1)}'
|
||||
return keymap_data
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user