~ruther/qmk_firmware

716969a01a5a2a6d48bfb4d8595bf85092b7244b — James Young 2 years ago 4a9771c
Macro3: rename LAYOUT to LAYOUT_ortho_2x4 (#18820)

M keyboards/macro3/info.json => keyboards/macro3/info.json +4 -1
@@ 8,8 8,11 @@
        "pid": "0x3388",
        "device_version": "0.0.3"
    },
    "layout_aliases": {
        "LAYOUT": "LAYOUT_ortho_2x4"
    },
    "layouts": {
        "LAYOUT": {
        "LAYOUT_ortho_2x4": {
            "layout": [
                {"x": 0, "y": 0},
                {"x": 1, "y": 0},

M keyboards/macro3/keymaps/default/keymap.c => keyboards/macro3/keymaps/default/keymap.c +2 -2
@@ 6,11 6,11 @@
#include QMK_KEYBOARD_H

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
    [0] = LAYOUT(
    [0] = LAYOUT_ortho_2x4(
        KC_MUTE, KC_MPLY, KC_MRWD, LT(1,KC_MFFD),
        C(KC_Z), C(KC_X), C(KC_C), C(KC_V)
    ),
    [1] = LAYOUT(
    [1] = LAYOUT_ortho_2x4(
        _______, _______, _______, _______,
        QK_BOOT, _______, _______, _______
    )

M keyboards/macro3/macro3.h => keyboards/macro3/macro3.h +1 -1
@@ 5,7 5,7 @@

#include "quantum.h"

#define LAYOUT( \
#define LAYOUT_ortho_2x4( \
    K00, K01, K02, K03, \
    K10, K11, K12, K13  \
) \