Move layouts for direct_pins boards to data driven (#19872)
parent
2222836f09
commit
e837a32b2b
@ -1,40 +0,0 @@ |
|||||||
/*
|
|
||||||
Copyright 2021 0xCB - Conor Burns |
|
||||||
|
|
||||||
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" |
|
||||||
|
|
||||||
/* This a shortcut to help you visually see your layout.
|
|
||||||
* |
|
||||||
* The first section contains all of the arguments representing the physical |
|
||||||
* layout of the board and position of the keys. |
|
||||||
* |
|
||||||
* The second converts the arguments into a two-dimensional array which |
|
||||||
* represents the switch matrix. |
|
||||||
*/ |
|
||||||
// clang-format off
|
|
||||||
#define LAYOUT( \ |
|
||||||
KA1, KA2, KA3, \
|
|
||||||
KB1, KB2, KB3, \
|
|
||||||
KC1, KC2, KC3 \
|
|
||||||
) \
|
|
||||||
{ \
|
|
||||||
{ KA1, KA2, KA3 }, \
|
|
||||||
{ KB1, KB2, KB3 }, \
|
|
||||||
{ KC1, KC2, KC3 } \
|
|
||||||
} |
|
||||||
// clang-format on
|
|
@ -1,35 +0,0 @@ |
|||||||
/* Copyright 2022 ItsFiremanSam
|
|
||||||
* |
|
||||||
* 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" |
|
||||||
|
|
||||||
/* This is a shortcut to help you visually see your layout.
|
|
||||||
* |
|
||||||
* The first section contains all of the arguments representing the physical |
|
||||||
* layout of the board and position of the keys. |
|
||||||
* |
|
||||||
* The second converts the arguments into a two-dimensional array which |
|
||||||
* represents the switch matrix. |
|
||||||
*/ |
|
||||||
#define LAYOUT( \ |
|
||||||
k00, k01, k02, k03, \
|
|
||||||
k10, k11, k12, k13 \
|
|
||||||
) { \
|
|
||||||
{ k00, k01, k02, k03 }, \
|
|
||||||
{ k10, k11, k12, k13 } \
|
|
||||||
} |
|
@ -1,16 +0,0 @@ |
|||||||
/* Copyright 2020 zvecr<git@zvecr.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/>.
|
|
||||||
*/ |
|
||||||
#include "1k.h" |
|
@ -1,33 +0,0 @@ |
|||||||
/* Copyright 2020 zvecr<git@zvecr.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 "quantum.h" |
|
||||||
|
|
||||||
/* This a shortcut to help you visually see your layout.
|
|
||||||
* |
|
||||||
* The first section contains all of the arguments representing the physical |
|
||||||
* layout of the board and position of the keys. |
|
||||||
* |
|
||||||
* The second converts the arguments into a two-dimensional array which |
|
||||||
* represents the switch matrix. |
|
||||||
*/ |
|
||||||
#define LAYOUT_ortho_1x1( \ |
|
||||||
K01 \
|
|
||||||
) \
|
|
||||||
{ \
|
|
||||||
{ K01 }, \
|
|
||||||
} |
|
@ -1,16 +0,0 @@ |
|||||||
/* Copyright 2019 monksoffunk
|
|
||||||
* |
|
||||||
* 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 "cassette42.h" |
|
@ -1,34 +0,0 @@ |
|||||||
/* Copyright 2019 monksoffunk
|
|
||||||
* |
|
||||||
* 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" |
|
||||||
|
|
||||||
/* This a shortcut to help you visually see your layout.
|
|
||||||
* |
|
||||||
* The first section contains all of the arguments representing the physical |
|
||||||
* layout of the board and position of the keys. |
|
||||||
* |
|
||||||
* The second converts the arguments into a two-dimensional array which |
|
||||||
* represents the switch matrix. |
|
||||||
*/ |
|
||||||
#define LAYOUT( \ |
|
||||||
k10, k11, \
|
|
||||||
k00, k01, k02, k03\
|
|
||||||
) \
|
|
||||||
{ \
|
|
||||||
{ k00, k01, k02, k03, k10, k11 }, \
|
|
||||||
} |
|
@ -1,33 +0,0 @@ |
|||||||
/* Copyright 2019 Arda Kilicdagi
|
|
||||||
* |
|
||||||
* 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" |
|
||||||
|
|
||||||
/* This a shortcut to help you visually see your layout.
|
|
||||||
* |
|
||||||
* The first section contains all of the arguments representing the physical |
|
||||||
* layout of the board and position of the keys. |
|
||||||
* |
|
||||||
* The second converts the arguments into a two-dimensional array which |
|
||||||
* represents the switch matrix. |
|
||||||
*/ |
|
||||||
#define LAYOUT( \ |
|
||||||
k00, k01, k02, k03 \
|
|
||||||
) \
|
|
||||||
{ \
|
|
||||||
{ k00, k01, k02, k03 }, \
|
|
||||||
} |
|
@ -1 +0,0 @@ |
|||||||
#include "nano.h" |
|
@ -1,13 +0,0 @@ |
|||||||
#pragma once |
|
||||||
|
|
||||||
#include "quantum.h" |
|
||||||
|
|
||||||
#define LAYOUT_ortho_2x4( \ |
|
||||||
k01, k02, k03, k04, \
|
|
||||||
k05, k06, k07, k08 \
|
|
||||||
) { \
|
|
||||||
{ k01, k02, k03, k04 }, \
|
|
||||||
{ k05, k06, k07, k08 } \
|
|
||||||
} |
|
||||||
|
|
||||||
#define LAYOUT LAYOUT_ortho_2x4 |
|
@ -1,16 +0,0 @@ |
|||||||
/* Copyright 2019
|
|
||||||
* |
|
||||||
* 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 "nein.h" |
|
@ -1,37 +0,0 @@ |
|||||||
/* Copyright 2019
|
|
||||||
* |
|
||||||
* 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" |
|
||||||
|
|
||||||
/* This a shortcut to help you visually see your layout.
|
|
||||||
* |
|
||||||
* The first section contains all of the arguments representing the physical |
|
||||||
* layout of the board and position of the keys. |
|
||||||
* |
|
||||||
* The second converts the arguments into a two-dimensional array which |
|
||||||
* represents the switch matrix. |
|
||||||
*/ |
|
||||||
#define LAYOUT_ortho_3x3( \ |
|
||||||
k00, k01, k02, \
|
|
||||||
k10, k11, k12, \
|
|
||||||
k20, k21, k22 \
|
|
||||||
) \
|
|
||||||
{ \
|
|
||||||
{ k00, k01, k02 }, \
|
|
||||||
{ k10, k11, k12 }, \
|
|
||||||
{ k20, k21, k22 } \
|
|
||||||
} |
|
@ -1,34 +0,0 @@ |
|||||||
/* Copyright 2020
|
|
||||||
* |
|
||||||
* 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" |
|
||||||
|
|
||||||
/* This a shortcut to help you visually see your layout.
|
|
||||||
* |
|
||||||
* The first section contains all of the arguments representing the physical |
|
||||||
* layout of the board and position of the keys. |
|
||||||
* |
|
||||||
* The second converts the arguments into a two-dimensional array which |
|
||||||
* represents the switch matrix. |
|
||||||
*/ |
|
||||||
#define LAYOUT_ortho_2x3( \ |
|
||||||
k00, k01, k02, \
|
|
||||||
k10, k11, k12 \
|
|
||||||
) { \
|
|
||||||
{ k00, k01, k02 }, \
|
|
||||||
{ k10, k11, k12 } \
|
|
||||||
} |
|
@ -1 +0,0 @@ |
|||||||
#include "8pack.h" |
|
@ -1,11 +0,0 @@ |
|||||||
#pragma once |
|
||||||
|
|
||||||
#include "quantum.h" |
|
||||||
|
|
||||||
#ifdef KEYBOARD_8pack_rev11 |
|
||||||
#include "rev11.h" |
|
||||||
#endif |
|
||||||
|
|
||||||
#ifdef KEYBOARD_8pack_rev12 |
|
||||||
#include "rev12.h" |
|
||||||
#endif |
|
@ -1,5 +1,19 @@ |
|||||||
{ |
{ |
||||||
"usb": { |
"usb": { |
||||||
"device_version": "0.0.1" |
"device_version": "0.0.1" |
||||||
|
}, |
||||||
|
"layouts": { |
||||||
|
"LAYOUT": { |
||||||
|
"layout": [ |
||||||
|
{"x":0, "y":0, "matrix": [1, 3]}, |
||||||
|
{"x":1, "y":0, "matrix": [1, 2]}, |
||||||
|
{"x":2, "y":0, "matrix": [1, 1]}, |
||||||
|
{"x":3, "y":0, "matrix": [1, 0]}, |
||||||
|
{"x":0, "y":1, "matrix": [0, 3]}, |
||||||
|
{"x":1, "y":1, "matrix": [0, 2]}, |
||||||
|
{"x":2, "y":1, "matrix": [0, 1]}, |
||||||
|
{"x":3, "y":1, "matrix": [0, 0]} |
||||||
|
] |
||||||
|
} |
||||||
} |
} |
||||||
} |
} |
||||||
|
@ -1 +0,0 @@ |
|||||||
#include "rev11.h" |
|
@ -1,11 +0,0 @@ |
|||||||
#pragma once |
|
||||||
|
|
||||||
#include "8pack.h" |
|
||||||
|
|
||||||
#define LAYOUT( \ |
|
||||||
K00, K01, K02, K03, \
|
|
||||||
K10, K11, K12, K13 \
|
|
||||||
) { \
|
|
||||||
{ K13, K12, K11, K10 }, \
|
|
||||||
{ K03, K02, K01, K00 } \
|
|
||||||
} |
|
@ -1,5 +1,19 @@ |
|||||||
{ |
{ |
||||||
"usb": { |
"usb": { |
||||||
"device_version": "0.0.2" |
"device_version": "0.0.2" |
||||||
|
}, |
||||||
|
"layouts": { |
||||||
|
"LAYOUT": { |
||||||
|
"layout": [ |
||||||
|
{"x":0, "y":0, "matrix": [0, 3]}, |
||||||
|
{"x":1, "y":0, "matrix": [0, 2]}, |
||||||
|
{"x":2, "y":0, "matrix": [0, 1]}, |
||||||
|
{"x":3, "y":0, "matrix": [0, 0]}, |
||||||
|
{"x":0, "y":1, "matrix": [1, 3]}, |
||||||
|
{"x":1, "y":1, "matrix": [1, 2]}, |
||||||
|
{"x":2, "y":1, "matrix": [1, 1]}, |
||||||
|
{"x":3, "y":1, "matrix": [1, 0]} |
||||||
|
] |
||||||
|
} |
||||||
} |
} |
||||||
} |
} |
||||||
|
@ -1 +0,0 @@ |
|||||||
#include "rev12.h" |
|
@ -1,11 +0,0 @@ |
|||||||
#pragma once |
|
||||||
|
|
||||||
#include "8pack.h" |
|
||||||
|
|
||||||
#define LAYOUT( \ |
|
||||||
K00, K01, K02, K03, \
|
|
||||||
K10, K11, K12, K13 \
|
|
||||||
) { \
|
|
||||||
{ K03, K02, K01, K00 }, \
|
|
||||||
{ K13, K12, K11, K10 } \
|
|
||||||
} |
|
@ -1,49 +0,0 @@ |
|||||||
/* Copyright 2018-2020 ENDO Katsuhiro <ka2hiro@curlybracket.co.jp> David Philip Barr <@davidphilipbarr> Pierre Chevalier <pierrechevalier83@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/>.
|
|
||||||
*/ |
|
||||||
|
|
||||||
#include "quantum.h" |
|
||||||
|
|
||||||
/* This a shortcut to help you visually see your layout.
|
|
||||||
* |
|
||||||
* The first section contains all of the arguments representing the physical |
|
||||||
* layout of the board and position of the keys. |
|
||||||
* |
|
||||||
* The second converts the arguments into a two-dimensional array which |
|
||||||
* represents the switch matrix. |
|
||||||
*/ |
|
||||||
|
|
||||||
// readability
|
|
||||||
#define ___ KC_NO |
|
||||||
|
|
||||||
#define LAYOUT_split_3x5_2( \ |
|
||||||
L01, L02, L03, L04, L05, R01, R02, R03, R04, R05, \
|
|
||||||
L06, L07, L08, L09, L10, R06, R07, R08, R09, R10, \
|
|
||||||
L11, L12, L13, L14, L15, R11, R12, R13, R14, R15, \
|
|
||||||
L16, L17, R16, R17 \
|
|
||||||
) \
|
|
||||||
{ \
|
|
||||||
{ L01, L02, L03, L04, L05 }, \
|
|
||||||
{ L06, L07, L08, L09, L10 }, \
|
|
||||||
{ L11, L12, L13, L14, L15 }, \
|
|
||||||
{ L16, L17, ___, ___, ___ }, \
|
|
||||||
{ R01, R02, R03, R04, R05 }, \
|
|
||||||
{ R06, R07, R08, R09, R10 }, \
|
|
||||||
{ R11, R12, R13, R14, R15 }, \
|
|
||||||
{ R16, R17, ___, ___, ___ } \
|
|
||||||
} |
|
||||||
|
|
||||||
#define LAYOUT LAYOUT_split_3x5_2 |
|
||||||
|
|
@ -1,38 +0,0 @@ |
|||||||
/* Copyright 2022 Jose Pablo Ramirez <jp.ramangulo@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 "quantum.h" |
|
||||||
|
|
||||||
#define ___ KC_NO |
|
||||||
|
|
||||||
// clang-format off
|
|
||||||
#define LAYOUT( \ |
|
||||||
K02, \
|
|
||||||
K10, K11, K12, \
|
|
||||||
K20, K21, K22, \
|
|
||||||
K30, K31, K32, \
|
|
||||||
K40, K41, K42 \
|
|
||||||
) \
|
|
||||||
{ \
|
|
||||||
{ ___, ___, K02 }, \
|
|
||||||
{ K10, K11, K12 }, \
|
|
||||||
{ K20, K21, K22 }, \
|
|
||||||
{ K30, K31, K32 }, \
|
|
||||||
{ K40, K41, K42 } \
|
|
||||||
} |
|
||||||
// clang-format on
|
|
@ -1,30 +0,0 @@ |
|||||||
/* Copyright 2022 Leon Anavi <leon@anavi.org>
|
|
||||||
* |
|
||||||
* 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 ___ KC_NO |
|
||||||
|
|
||||||
// clang-format off
|
|
||||||
#define LAYOUT_k1( \ |
|
||||||
K02 \
|
|
||||||
) \
|
|
||||||
{ \
|
|
||||||
{ K02 } \
|
|
||||||
} |
|
||||||
// clang-format on
|
|
@ -1 +0,0 @@ |
|||||||
#include "macropad8.h" |
|
@ -1,11 +0,0 @@ |
|||||||
#pragma once |
|
||||||
|
|
||||||
#include "quantum.h" |
|
||||||
|
|
||||||
#define LAYOUT_ortho_2x4( \ |
|
||||||
k01, k02, k03, k04, \
|
|
||||||
k05, k06, k07, k08 \
|
|
||||||
) { \
|
|
||||||
{ k01, k02, k03, k04 }, \
|
|
||||||
{ k05, k06, k07, k08 } \
|
|
||||||
} |
|
@ -1,18 +0,0 @@ |
|||||||
/*
|
|
||||||
Copyright 2020 David Doan |
|
||||||
|
|
||||||
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 "1x4p1.h" |
|
@ -1,26 +0,0 @@ |
|||||||
/*
|
|
||||||
Copyright 2020 David Doan |
|
||||||
|
|
||||||
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_ortho_1x5( \ |
|
||||||
k01, k02, k03, k04, k05\
|
|
||||||
) { \
|
|
||||||
{ k01, k02, k03, k04, k05} \
|
|
||||||
} |
|
@ -1,17 +0,0 @@ |
|||||||
/* Copyright 2020 mechmerlin
|
|
||||||
* |
|
||||||
* 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 "fm2u.h" |
|
@ -1,113 +0,0 @@ |
|||||||
/* Copyright 2020 mechmerlin
|
|
||||||
* |
|
||||||
* 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" |
|
||||||
|
|
||||||
/* This is a shortcut to help you visually see your layout.
|
|
||||||
* |
|
||||||
* The first section contains all of the arguments representing the physical |
|
||||||
* layout of the board and position of the keys. |
|
||||||
* |
|
||||||
* The second converts the arguments into a two-dimensional array which |
|
||||||
* represents the switch matrix. |
|
||||||
*/ |
|
||||||
#define LAYOUT_1u( \ |
|
||||||
k00 \
|
|
||||||
) { \
|
|
||||||
{ k00 } \
|
|
||||||
} |
|
||||||
|
|
||||||
#define LAYOUT_1u25( \ |
|
||||||
k00 \
|
|
||||||
) { \
|
|
||||||
{ k00 } \
|
|
||||||
} |
|
||||||
|
|
||||||
#define LAYOUT_1u5( \ |
|
||||||
k00 \
|
|
||||||
) { \
|
|
||||||
{ k00 } \
|
|
||||||
} |
|
||||||
|
|
||||||
#define LAYOUT_1u75( \ |
|
||||||
k00 \
|
|
||||||
) { \
|
|
||||||
{ k00 } \
|
|
||||||
} |
|
||||||
|
|
||||||
#define LAYOUT_2u( \ |
|
||||||
k00 \
|
|
||||||
) { \
|
|
||||||
{ k00 } \
|
|
||||||
} |
|
||||||
|
|
||||||
#define LAYOUT_2u25( \ |
|
||||||
k00 \
|
|
||||||
) { \
|
|
||||||
{ k00 } \
|
|
||||||
} |
|
||||||
|
|
||||||
#define LAYOUT_2u75( \ |
|
||||||
k00 \
|
|
||||||
) { \
|
|
||||||
{ k00 } \
|
|
||||||
} |
|
||||||
|
|
||||||
#define LAYOUT_3u( \ |
|
||||||
k00 \
|
|
||||||
) { \
|
|
||||||
{ k00 } \
|
|
||||||
} |
|
||||||
|
|
||||||
#define LAYOUT_6u( \ |
|
||||||
k00 \
|
|
||||||
) { \
|
|
||||||
{ k00 } \
|
|
||||||
} |
|
||||||
|
|
||||||
#define LAYOUT_6u25( \ |
|
||||||
k00 \
|
|
||||||
) { \
|
|
||||||
{ k00 } \
|
|
||||||
} |
|
||||||
|
|
||||||
#define LAYOUT_7u( \ |
|
||||||
k00 \
|
|
||||||
) { \
|
|
||||||
{ k00 } \
|
|
||||||
} |
|
||||||
|
|
||||||
#define LAYOUT_isoenter( \ |
|
||||||
k00 \
|
|
||||||
) { \
|
|
||||||
{ k00 } \
|
|
||||||
} |
|
||||||
|
|
||||||
// Backward compatibility TODO: remove these
|
|
||||||
#define LAYOUT_100u LAYOUT_1u |
|
||||||
#define LAYOUT_125u LAYOUT_1u25 |
|
||||||
#define LAYOUT_150u LAYOUT_1u5 |
|
||||||
#define LAYOUT_175u LAYOUT_1u75 |
|
||||||
#define LAYOUT_200u LAYOUT_2u |
|
||||||
#define LAYOUT_225u LAYOUT_2u25 |
|
||||||
#define LAYOUT_275u LAYOUT_2u75 |
|
||||||
#define LAYOUT_300u LAYOUT_3u |
|
||||||
#define LAYOUT_600u LAYOUT_6u |
|
||||||
#define LAYOUT_625u LAYOUT_6u25 |
|
||||||
#define LAYOUT_700u LAYOUT_7u |
|
||||||
#define LAYOUT_iso LAYOUT_isoenter |
|
@ -1 +0,0 @@ |
|||||||
#include "california.h" |
|
@ -1,3 +0,0 @@ |
|||||||
#pragma once |
|
||||||
|
|
||||||
#include "quantum.h" |
|
@ -1,16 +0,0 @@ |
|||||||
/* Copyright 2022 Yiancar-Designs
|
|
||||||
* |
|
||||||
* 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 "crypt_macro.h" |
|
@ -1,28 +0,0 @@ |
|||||||
/* Copyright 2022 Yiancar-Designs
|
|
||||||
* |
|
||||||
* 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 XXX KC_NO |
|
||||||
|
|
||||||
#include "quantum.h" |
|
||||||
|
|
||||||
#define LAYOUT( \ |
|
||||||
K00, K01, K02, \
|
|
||||||
K11 \
|
|
||||||
) { \
|
|
||||||
{ K00, K01, K02 }, \
|
|
||||||
{ XXX, K11, XXX } \
|
|
||||||
} |
|
@ -1,17 +0,0 @@ |
|||||||
/* Copyright 2021 yfuku
|
|
||||||
* |
|
||||||
* 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 "owl8.h" |
|
@ -1,38 +0,0 @@ |
|||||||
/* Copyright 2021 yfuku
|
|
||||||
* |
|
||||||
* 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" |
|
||||||
|
|
||||||
/* This is a shortcut to help you visually see your layout.
|
|
||||||
* |
|
||||||
* The first section contains all of the arguments representing the physical |
|
||||||
* layout of the board and position of the keys. |
|
||||||
* |
|
||||||
* The second converts the arguments into a two-dimensional array which |
|
||||||
* represents the switch matrix. |
|
||||||
*/ |
|
||||||
|
|
||||||
#define LAYOUT( \ |
|
||||||
k012, k013, k014, k015, \
|
|
||||||
k008, k009, k010, k011, \
|
|
||||||
k000, k001, k002, k003, \
|
|
||||||
k004, k005, k006, k007 \
|
|
||||||
) \
|
|
||||||
{ \
|
|
||||||
{k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011, k012, k013, k014, k015 } \
|
|
||||||
} |
|
@ -1,17 +0,0 @@ |
|||||||
/* Copyright 2021 yfuku
|
|
||||||
* |
|
||||||
* 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 "stickey4.h" |
|
@ -1,36 +0,0 @@ |
|||||||
/* Copyright 2021 yfuku
|
|
||||||
* |
|
||||||
* 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" |
|
||||||
|
|
||||||
/* This is a shortcut to help you visually see your layout.
|
|
||||||
* |
|
||||||
* The first section contains all of the arguments representing the physical |
|
||||||
* layout of the board and position of the keys. |
|
||||||
* |
|
||||||
* The second converts the arguments into a two-dimensional array which |
|
||||||
* represents the switch matrix. |
|
||||||
*/ |
|
||||||
|
|
||||||
#define LAYOUT( \ |
|
||||||
k00, k01, k02, k03, \
|
|
||||||
k04, k05, k06, k07 \
|
|
||||||
) \
|
|
||||||
{ \
|
|
||||||
{k00, k01, k02, k03, k04, k05, k06, k07 } \
|
|
||||||
} |
|
@ -1,32 +0,0 @@ |
|||||||
/*
|
|
||||||
|
|
||||||
QMK Firmware for dekuNukem/duckyPad |
|
||||||
|
|
||||||
Copyright (C) 2020 Anthony Som |
|
||||||
|
|
||||||
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 3 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( \ |
|
||||||
k00, k01, k02, \
|
|
||||||
k03, k04, k05, \
|
|
||||||
k06, k07, k08, \
|
|
||||||
k09, k010, k011, \
|
|
||||||
k012, k013, k014, \
|
|
||||||
k015, k016 \
|
|
||||||
) {{k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k010, k011, k012, k013, k014, k015, k016}} |
|
@ -1,52 +1,4 @@ |
|||||||
{ |
{ |
||||||
"url": "https://github.com/pierrechevalier83/ferris/", |
"url": "https://github.com/pierrechevalier83/ferris/", |
||||||
"maintainer": "@pierrec83", |
"maintainer": "@pierrec83" |
||||||
"community_layouts": ["split_3x5_2"], |
|
||||||
"layouts": { |
|
||||||
"LAYOUT_split_3x5_2": { |
|
||||||
"layout": [ |
|
||||||
{"x": 0, "y": 0.93}, |
|
||||||
{"x": 1, "y": 0.31}, |
|
||||||
{"x": 2, "y": 0}, |
|
||||||
{"x": 3, "y": 0.28}, |
|
||||||
{"x": 4, "y": 0.42}, |
|
||||||
|
|
||||||
{"x": 7, "y": 0.42}, |
|
||||||
{"x": 8, "y": 0.28}, |
|
||||||
{"x": 9, "y": 0}, |
|
||||||
{"x": 10, "y": 0.31}, |
|
||||||
{"x": 11, "y": 0.93}, |
|
||||||
|
|
||||||
{"x": 0, "y": 1.93}, |
|
||||||
{"x": 1, "y": 1.31}, |
|
||||||
{"x": 2, "y": 1}, |
|
||||||
{"x": 3, "y": 1.28}, |
|
||||||
{"x": 4, "y": 1.42}, |
|
||||||
|
|
||||||
{"x": 7, "y": 1.42}, |
|
||||||
{"x": 8, "y": 1.28}, |
|
||||||
{"x": 9, "y": 1}, |
|
||||||
{"x": 10, "y": 1.31}, |
|
||||||
{"x": 11, "y": 1.93}, |
|
||||||
|
|
||||||
{"x": 0, "y": 2.93}, |
|
||||||
{"x": 1, "y": 2.31}, |
|
||||||
{"x": 2, "y": 2}, |
|
||||||
{"x": 3, "y": 2.28}, |
|
||||||
{"x": 4, "y": 2.42}, |
|
||||||
|
|
||||||
{"x": 7, "y": 2.42}, |
|
||||||
{"x": 8, "y": 2.28}, |
|
||||||
{"x": 9, "y": 2}, |
|
||||||
{"x": 10, "y": 2.31}, |
|
||||||
{"x": 11, "y": 2.93}, |
|
||||||
|
|
||||||
{"x": 3.5, "y": 3.75}, |
|
||||||
{"x": 4.5, "y": 4}, |
|
||||||
|
|
||||||
{"x": 6.5, "y": 4}, |
|
||||||
{"x": 7.5, "y": 3.75} |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
} |
} |
||||||
|
@ -1,48 +0,0 @@ |
|||||||
/* Copyright 2018-2020 ENDO Katsuhiro <ka2hiro@curlybracket.co.jp> David Philip Barr <@davidphilipbarr> Pierre Chevalier <pierrechevalier83@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/>.
|
|
||||||
*/ |
|
||||||
|
|
||||||
#include "quantum.h" |
|
||||||
|
|
||||||
/* This a shortcut to help you visually see your layout.
|
|
||||||
* |
|
||||||
* The first section contains all of the arguments representing the physical |
|
||||||
* layout of the board and position of the keys. |
|
||||||
* |
|
||||||
* The second converts the arguments into a two-dimensional array which |
|
||||||
* represents the switch matrix. |
|
||||||
*/ |
|
||||||
|
|
||||||
// readability
|
|
||||||
#define ___ KC_NO |
|
||||||
|
|
||||||
#define LAYOUT_split_3x5_2( \ |
|
||||||
L01, L02, L03, L04, L05, R01, R02, R03, R04, R05, \
|
|
||||||
L06, L07, L08, L09, L10, R06, R07, R08, R09, R10, \
|
|
||||||
L11, L12, L13, L14, L15, R11, R12, R13, R14, R15, \
|
|
||||||
L16, L17, R16, R17 \
|
|
||||||
) \
|
|
||||||
{ \
|
|
||||||
{ L01, L02, L03, L04, L05 }, \
|
|
||||||
{ L06, L07, L08, L09, L10 }, \
|
|
||||||
{ L11, L12, L13, L14, L15 }, \
|
|
||||||
{ L16, L17, ___, ___ , ___}, \
|
|
||||||
{ R01, R02, R03, R04, R05 }, \
|
|
||||||
{ R06, R07, R08, R09, R10 }, \
|
|
||||||
{ R11, R12, R13, R14, R15 }, \
|
|
||||||
{ R16, R17, ___, ___, ___ } \
|
|
||||||
} |
|
||||||
|
|
||||||
#define LAYOUT LAYOUT_split_3x5_2 |
|
@ -1,26 +0,0 @@ |
|||||||
/* Copyright 2020 Geekboards ltd. (geekboards.ru / geekboards.de)
|
|
||||||
* |
|
||||||
* 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_ortho_2x4( \ |
|
||||||
k00, k01, k02, k03, \
|
|
||||||
k10, k11, k12, k13 \
|
|
||||||
) { \
|
|
||||||
{ k00, k01, k02, k03 }, \
|
|
||||||
{ k10, k11, k12, k13 } \
|
|
||||||
} |
|
@ -1,17 +0,0 @@ |
|||||||
/* Copyright 2020 Richard Sutherland
|
|
||||||
* |
|
||||||
* 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 "aball.h" |
|
@ -1,21 +0,0 @@ |
|||||||
/* Copyright 2020 Richard Sutherland
|
|
||||||
* |
|
||||||
* 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(k00) {{ k00 }} |
|
@ -1 +0,0 @@ |
|||||||
#include "bdn9_ble.h" |
|
@ -1,37 +0,0 @@ |
|||||||
/* Copyright 2019 Danny Nguyen <danny@keeb.io>
|
|
||||||
* |
|
||||||
* 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" |
|
||||||
|
|
||||||
/* This a shortcut to help you visually see your layout.
|
|
||||||
* |
|
||||||
* The first section contains all of the arguments representing the physical |
|
||||||
* layout of the board and position of the keys. |
|
||||||
* |
|
||||||
* The second converts the arguments into a two-dimensional array which |
|
||||||
* represents the switch matrix. |
|
||||||
*/ |
|
||||||
#define LAYOUT( \ |
|
||||||
KA1, KA2, KA3, \
|
|
||||||
KB1, KB2, KB3, \
|
|
||||||
KC1, KC2, KC3 \
|
|
||||||
) \
|
|
||||||
{ \
|
|
||||||
{ KA1, KA2, KA3 }, \
|
|
||||||
{ KB1, KB2, KB3 }, \
|
|
||||||
{ KC1, KC2, KC3 } \
|
|
||||||
} |
|
@ -1,16 +0,0 @@ |
|||||||
/* Copyright 2020 GhostSeven <work@ghost7.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/>.
|
|
||||||
*/ |
|
||||||
#include "bento.h" |
|
@ -1,20 +0,0 @@ |
|||||||
/* Copyright 2020 GhostSeven <work@ghost7.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 |
|
||||||
|
|
||||||
#ifdef KEYBOARD_handwired_bento_rev1 |
|
||||||
#include "rev1.h" |
|
||||||
#endif |
|
@ -1,36 +0,0 @@ |
|||||||
/* Copyright 2020 GhostSeven <work@ghost7.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 "bento.h" |
|
||||||
#include "quantum.h" |
|
||||||
|
|
||||||
/* This a shortcut to help you visually see your layout.
|
|
||||||
* |
|
||||||
* The first section contains all of the arguments representing the physical |
|
||||||
* layout of the board and position of the keys. |
|
||||||
* |
|
||||||
* The second converts the arguments into a two-dimensional array which |
|
||||||
* represents the switch matrix. |
|
||||||
*/ |
|
||||||
#define LAYOUT( \ |
|
||||||
KA1, KA2, KA3, \
|
|
||||||
KB1, KB2, KB3 \
|
|
||||||
) \
|
|
||||||
{ \
|
|
||||||
{ KA1, KA2, KA3 }, \
|
|
||||||
{ KB1, KB2, KB3 } \
|
|
||||||
} |
|
@ -1,17 +0,0 @@ |
|||||||
/* Copyright 2021 Daniel Cormier
|
|
||||||
* |
|
||||||
* 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 "001.h" |
|
@ -1,33 +0,0 @@ |
|||||||
/* Copyright 2021 Daniel Cormier
|
|
||||||
* |
|
||||||
* 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" |
|
||||||
|
|
||||||
/* This is a shortcut to help you visually see your layout.
|
|
||||||
* |
|
||||||
* The first section contains all of the arguments representing the physical |
|
||||||
* layout of the board and position of the keys. |
|
||||||
* |
|
||||||
* The second converts the arguments into a two-dimensional array which |
|
||||||
* represents the switch matrix. |
|
||||||
*/ |
|
||||||
#define LAYOUT( \ |
|
||||||
k00, k01, k02, k03, k04 \
|
|
||||||
) { \
|
|
||||||
{ k00, k01, k02, k03, k04 } \
|
|
||||||
} |
|
@ -1,17 +0,0 @@ |
|||||||
/* Copyright 2022 dari-studios (@dari-studios)
|
|
||||||
* |
|
||||||
* 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 "lemonpad.h" |
|
@ -1,38 +0,0 @@ |
|||||||
/* Copyright 2022 dari-studios (@dari-studios)
|
|
||||||
* |
|
||||||
* 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" |
|
||||||
|
|
||||||
/* This is a shortcut to help you visually see your layout.
|
|
||||||
* |
|
||||||
* The first section contains all of the arguments representing the physical |
|
||||||
* layout of the board and position of the keys. |
|
||||||
* |
|
||||||
* The second converts the arguments into a two-dimensional array which |
|
||||||
* represents the switch matrix. |
|
||||||
*/ |
|
||||||
|
|
||||||
//Top 3 on the usb port side, bottom 3 on the opposite side
|
|
||||||
|
|
||||||
#define LAYOUT( \ |
|
||||||
k00, k01, k02, \
|
|
||||||
k10, k11, k12 \
|
|
||||||
) { \
|
|
||||||
{ k00, k01, k02 }, \
|
|
||||||
{ k10, k11, k12 }, \
|
|
||||||
} |
|
@ -1 +0,0 @@ |
|||||||
#include "2x3.h" |
|
@ -1,11 +0,0 @@ |
|||||||
#pragma once |
|
||||||
|
|
||||||
#include "quantum.h" |
|
||||||
|
|
||||||
#define LAYOUT_ortho_2x3( \ |
|
||||||
K00, K01, K02, \
|
|
||||||
K03, K04, K05 \
|
|
||||||
) { \
|
|
||||||
{ K00, K01, K02}, \
|
|
||||||
{ K03, K04, K05} \
|
|
||||||
} |
|
@ -1 +0,0 @@ |
|||||||
#include "2x4.h" |
|
@ -1,12 +0,0 @@ |
|||||||
#pragma once |
|
||||||
|
|
||||||
#include "quantum.h" |
|
||||||
|
|
||||||
#define LAYOUT_ortho_2x4(\ |
|
||||||
K00, K01, K02, K03, \
|
|
||||||
K04, K05, K06, K07 \
|
|
||||||
) \
|
|
||||||
{ \
|
|
||||||
{ K00,K01,K02,K03}, \
|
|
||||||
{ K04,K05,K06,K07} \
|
|
||||||
} |
|
@ -1 +0,0 @@ |
|||||||
#include "2x5.h" |
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue