mirror of
https://github.com/qmk/qmk_firmware.git
synced 2026-06-23 15:54:12 -04:00
Compare commits
16 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 85a7627641 | |||
| 11daef82e0 | |||
| c95f0fb671 | |||
| f0b5feb858 | |||
| f43c9127bf | |||
| 4055798807 | |||
| 49a1a12a32 | |||
| fb598e7e61 | |||
| c0d57a6826 | |||
| 1a284f2b92 | |||
| f25624dca4 | |||
| 035dcf213c | |||
| 7446c6ea7d | |||
| ff21363627 | |||
| c2dd0c1845 | |||
| 13a87ad354 |
@@ -0,0 +1,69 @@
|
||||
{
|
||||
"manufacturer": "ScottoKeebs",
|
||||
"keyboard_name": "Scotto37",
|
||||
"maintainer": "joe-scotto",
|
||||
"bootloader": "rp2040",
|
||||
"diode_direction": "COL2ROW",
|
||||
"features": {
|
||||
"bootmagic": true,
|
||||
"command": false,
|
||||
"console": false,
|
||||
"extrakey": true,
|
||||
"mousekey": true,
|
||||
"nkro": true
|
||||
},
|
||||
"matrix_pins": {
|
||||
"cols": ["GP2", "GP3", "GP4", "GP5", "GP6", "GP7", "GP8", "GP9", "GP29", "GP28"],
|
||||
"rows": ["GP22", "GP20", "GP23", "GP21"]
|
||||
},
|
||||
"processor": "RP2040",
|
||||
"url": "https://scottokeebs.com",
|
||||
"usb": {
|
||||
"device_version": "1.0.0",
|
||||
"pid": "0x0027",
|
||||
"vid": "0x534B"
|
||||
},
|
||||
"layouts": {
|
||||
"LAYOUT_3x10_7": {
|
||||
"layout": [
|
||||
{"matrix": [0, 0], "x": 0, "y": 0},
|
||||
{"matrix": [0, 1], "x": 1, "y": 0},
|
||||
{"matrix": [0, 2], "x": 2, "y": 0},
|
||||
{"matrix": [0, 3], "x": 3, "y": 0},
|
||||
{"matrix": [0, 4], "x": 4, "y": 0},
|
||||
{"matrix": [0, 5], "x": 5, "y": 0},
|
||||
{"matrix": [0, 6], "x": 6, "y": 0},
|
||||
{"matrix": [0, 7], "x": 7, "y": 0},
|
||||
{"matrix": [0, 8], "x": 8, "y": 0},
|
||||
{"matrix": [0, 9], "x": 9, "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": [1, 4], "x": 4, "y": 1},
|
||||
{"matrix": [1, 5], "x": 5, "y": 1},
|
||||
{"matrix": [1, 6], "x": 6, "y": 1},
|
||||
{"matrix": [1, 7], "x": 7, "y": 1},
|
||||
{"matrix": [1, 8], "x": 8, "y": 1},
|
||||
{"matrix": [1, 9], "x": 9, "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},
|
||||
{"matrix": [2, 4], "x": 4, "y": 2},
|
||||
{"matrix": [2, 5], "x": 5, "y": 2},
|
||||
{"matrix": [2, 6], "x": 6, "y": 2},
|
||||
{"matrix": [2, 7], "x": 7, "y": 2},
|
||||
{"matrix": [2, 8], "x": 8, "y": 2},
|
||||
{"matrix": [2, 9], "x": 9, "y": 2},
|
||||
{"matrix": [3, 0], "x": 0, "y": 3},
|
||||
{"matrix": [3, 1], "x": 1, "y": 3},
|
||||
{"matrix": [3, 2], "x": 2, "y": 3},
|
||||
{"matrix": [3, 4], "x": 4, "y": 3},
|
||||
{"matrix": [3, 7], "x": 7, "y": 3},
|
||||
{"matrix": [3, 8], "x": 8, "y": 3},
|
||||
{"matrix": [3, 9], "x": 9, "y": 3}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
/*
|
||||
Copyright 2024 Joe Scotto
|
||||
|
||||
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 options
|
||||
#define TAPPING_TERM 135
|
||||
#define PERMISSIVE_HOLD
|
||||
@@ -0,0 +1,45 @@
|
||||
/*
|
||||
Copyright 2024 Joe Scotto
|
||||
|
||||
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_3x10_7(
|
||||
KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P,
|
||||
KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_BSPC,
|
||||
LSFT_T(KC_Z), KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMMA, KC_DOT, RSFT_T(KC_SLSH),
|
||||
KC_ESC, KC_LCTL, KC_LALT, LGUI_T(KC_SPC), LT(1, KC_TAB), LT(2, KC_ENT), KC_ESC
|
||||
),
|
||||
[1] = LAYOUT_3x10_7(
|
||||
KC_UNDS, KC_MINS, KC_PLUS, KC_EQL, KC_COLN, KC_GRV, KC_MRWD, KC_MPLY, KC_MFFD, KC_DEL,
|
||||
KC_LCBR, KC_LPRN, KC_RPRN, KC_RCBR, KC_PIPE, KC_ESC, KC_LEFT, KC_UP, KC_DOWN, KC_RGHT,
|
||||
LSFT_T(KC_LBRC), KC_QUOT, KC_DQUO, KC_RBRC, KC_SCLN, KC_TILDE, KC_VOLD, KC_MUTE, KC_VOLU, RSFT_T(KC_BSLS),
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
|
||||
),
|
||||
[2] = LAYOUT_3x10_7(
|
||||
KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_CAPS, KC_BSPC,
|
||||
KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0,
|
||||
KC_LSFT, KC_NO, KC_NO, KC_NO, MO(3), KC_NO, KC_NO, KC_COMM, KC_DOT, RSFT_T(KC_SLSH),
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
|
||||
),
|
||||
[3] = LAYOUT_3x10_7(
|
||||
KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO,
|
||||
KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10,
|
||||
KC_F11, KC_NO, KC_NO, QK_BOOT, KC_TRNS, KC_NO, KC_NO, KC_NO, KC_NO, KC_F12,
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
|
||||
)
|
||||
};
|
||||
@@ -0,0 +1,29 @@
|
||||
# Scotto37
|
||||
|
||||

|
||||
|
||||
A 37-key gasket-mounted 0.25u column-staggered keyboard with a 3u spacebar.
|
||||
|
||||
* Keyboard Maintainer: [Joe Scotto](https://github.com/joe-scotto)
|
||||
* Hardware Supported: RP2040 Pro Micro
|
||||
* Hardware Availability: [ScottoKeebs](https://scottokeebs.com), [Amazon](https://amazon.com), [AliExpress](https://aliexpress.com)
|
||||
|
||||
# Compiling
|
||||
|
||||
Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
make handwired/scottokeebs/scotto37:default
|
||||
|
||||
Flashing example for this keyboard:
|
||||
|
||||
make handwired/scottokeebs/scotto37: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
|
||||
@@ -20,12 +20,12 @@ led_config_t g_led_config = {
|
||||
{ 13, 12, 11, 10, 9, 8, 7 },
|
||||
{ 0, 1, 2, 3, 4, 5, 6 },
|
||||
/*right*/
|
||||
{ NO_LED, 72, 71, 70, 73, 75, 74 },
|
||||
{ 65, 66, 67, 68, 69, NO_LED, NO_LED },
|
||||
{ 64, 63, 62, 61, 60, 59, 58 },
|
||||
{ 52, 53, 54, 55, 56, 57, NO_LED },
|
||||
{ 51, 50, 49, 48, 47, 46, 45 },
|
||||
{ 38, 39, 40, 41, 42, 43, 44 }
|
||||
{ NO_LED, 77, 76, 75, 78, 80, 79 },
|
||||
{ 70, 71, 72, 73, 74, NO_LED, NO_LED },
|
||||
{ 69, 68, 67, 66, 65, 64, 63 },
|
||||
{ 57, 58, 59, 60, 61, 62, NO_LED },
|
||||
{ 56, 55, 54, 53, 52, 51, 50 },
|
||||
{ 43, 44, 45, 46, 47, 48, 49 }
|
||||
},
|
||||
{
|
||||
// LED Index to Physical Position
|
||||
@@ -60,7 +60,7 @@ led_config_t g_led_config = {
|
||||
|
||||
#ifdef OLED_ENABLE
|
||||
|
||||
# define UNC (94 + 0x21)
|
||||
# define UNC (' ')
|
||||
typedef struct _master_to_slave_t {
|
||||
int cur_alp_index;
|
||||
char current_alp[7];
|
||||
@@ -115,8 +115,8 @@ void render_layer_helper_fun(uint8_t start_line, const char *data, uint8_t gap_w
|
||||
for (j = 0; j < l; ++j) { // font index
|
||||
for (k = 0; k < 12; ++k) { // font byte index
|
||||
// base + logo_w(32) + gap_w(12) +l*font_w(12)+current_byte_index
|
||||
oled_write_raw_byte(pgm_read_byte(&ext_big_font[pgm_read_byte(&data[j]) - 0x21][k]), start_line * 2 * 128 + 32 + gap_w + j * 12 + k);
|
||||
oled_write_raw_byte(pgm_read_byte(&ext_big_font[pgm_read_byte(&data[j]) - 0x21][k + 12]), start_line * 2 * 128 + 128 + 32 + gap_w + j * 12 + k);
|
||||
oled_write_raw_byte(pgm_read_byte(&ext_big_font[pgm_read_byte(&data[j]) - 0x20][k]), start_line * 2 * 128 + 32 + gap_w + j * 12 + k);
|
||||
oled_write_raw_byte(pgm_read_byte(&ext_big_font[pgm_read_byte(&data[j]) - 0x20][k + 12]), start_line * 2 * 128 + 128 + 32 + gap_w + j * 12 + k);
|
||||
}
|
||||
}
|
||||
for (j = 0; j < gap_w; ++j) {
|
||||
@@ -151,8 +151,8 @@ void render_cur_input_helper_fun(uint8_t start_line, const char *data, uint8_t g
|
||||
for (j = 0; j < l; ++j) { // font index
|
||||
for (k = 0; k < 12; ++k) { // font byte index
|
||||
// base + logo_w(0) + gap_w(12) +l*font_w(12)+current_byte_index
|
||||
oled_write_raw_byte(pgm_read_byte(&ext_big_font[data[j] - 0x21][k]), start_line * 2 * 128 + gap_w + j * 12 + k);
|
||||
oled_write_raw_byte(pgm_read_byte(&ext_big_font[data[j] - 0x21][12 + k]), start_line * 2 * 128 + 128 + gap_w + j * 12 + k);
|
||||
oled_write_raw_byte(pgm_read_byte(&ext_big_font[data[j] - 0x20][k]), start_line * 2 * 128 + gap_w + j * 12 + k);
|
||||
oled_write_raw_byte(pgm_read_byte(&ext_big_font[data[j] - 0x20][12 + k]), start_line * 2 * 128 + 128 + gap_w + j * 12 + k);
|
||||
}
|
||||
}
|
||||
for (j = 0; j < gap_w; ++j) {
|
||||
|
||||
@@ -7,116 +7,116 @@
|
||||
#include "progmem.h"
|
||||
|
||||
/*
|
||||
!(0) "(1) #(2) $(3) %(4) &(5) '(6) ((7)
|
||||
)(8) *(9) +(10) ,(11) -(12) .(13) /(14) 0(15)
|
||||
1(16) 2(17) 3(18) 4(19) 5(20) 6(21) 7(22) 8(23)
|
||||
9(24) :(25) ;(26) <(27) =(28) >(29) ?(30) @(31)
|
||||
A(32) B(33) C(34) D(35) E(36) F(37) G(38) H(39)
|
||||
I(40) J(41) K(42) L(43) M(44) N(45) O(46) P(47)
|
||||
Q(48) R(49) S(50) T(51) U(52) V(53) W(54) X(55)
|
||||
Y(56) Z(57) [(58) \(59) ](60) ^(61) _(62) `(63)
|
||||
a(64) b(65) c(66) d(67) e(68) f(69) g(70) h(71)
|
||||
i(72) j(73) k(74) l(75) m(76) n(77) o(78) p(79)
|
||||
q(80) r(81) s(82) t(83) u(84) v(85) w(86) x(87)
|
||||
y(88) z(89) {(90) |(91) }(92) ~(93) (94)
|
||||
(0) !(1) "(2) #(3) $(4) %(5) &(6) '(7) ((8)
|
||||
)(9) *(10) +(11) ,(12) -(13) .(14) /(15) 0(16)
|
||||
1(17) 2(18) 3(19) 4(20) 5(21) 6(22) 7(23) 8(24)
|
||||
9(25) :(26) ;(27) <(28) =(29) >(30) ?(31) @(32)
|
||||
A(33) B(34) C(35) D(36) E(37) F(38) G(39) H(40)
|
||||
I(41) J(42) K(43) L(44) M(45) N(46) O(47) P(48)
|
||||
Q(49) R(50) S(51) T(52) U(53) V(54) W(55) X(56)
|
||||
Y(57) Z(58) [(59) \(60) ](61) ^(62) _(63) `(64)
|
||||
a(65) b(66) c(67) d(68) e(69) f(70) g(71) h(72)
|
||||
i(73) j(74) k(75) l(76) m(77) n(78) o(79) p(80)
|
||||
q(81) r(82) s(83) t(84) u(85) v(86) w(87) x(88)
|
||||
y(89) z(90) {(91) |(92) }(93) ~(94)
|
||||
*/
|
||||
|
||||
static const unsigned char ext_big_font[95][24] PROGMEM = {
|
||||
{0x00,0x00,0x00,0x00,0xFC,0xFC,0xFC,0xFC,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1B,0x1B,0x1B,0x1B,0x00,0x00,0x00,0x00},/*"!",0*/
|
||||
{0x00,0x00,0x00,0x18,0xF8,0x18,0x00,0x18,0xF8,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00},/*""",1*/
|
||||
{0x00,0x00,0x60,0x60,0xFE,0xFE,0x60,0xFE,0xFE,0x60,0x00,0x00,0x00,0x00,0x06,0x7F,0x7F,0x06,0x7F,0x7F,0x06,0x06,0x00,0x00},/*"#",2*/
|
||||
{0x00,0x00,0x00,0xF0,0xF8,0x9E,0x9E,0xB8,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x1C,0x1C,0xF9,0xF9,0x1F,0x0F,0x00,0x00,0x00},/*"$",3*/
|
||||
{0x00,0x00,0x38,0x44,0xC4,0xC4,0xB8,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x0E,0x11,0x11,0x11,0x0E,0x00,0x00,0x00},/*"%",4*/
|
||||
{0x00,0x00,0x60,0xE0,0xB0,0x30,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x0E,0x0F,0x19,0x19,0x1B,0x1E,0x0E,0x0F,0x1B,0x00,0x00},/*"&",5*/
|
||||
{0x00,0x00,0x00,0x00,0x00,0x18,0xF8,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00},/*"'",6*/
|
||||
{0x00,0x00,0x00,0x00,0x00,0xC0,0xF0,0x3C,0x0C,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x1F,0x78,0x60,0x00,0x00,0x00},/*"(",7*/
|
||||
{0x00,0x00,0x0C,0x3C,0xF0,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x78,0x1F,0x07,0x00,0x00,0x00,0x00,0x00,0x00},/*")",8*/
|
||||
{0x00,0x00,0x30,0xB0,0xF0,0xFC,0xFC,0xF0,0xB0,0x30,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x01,0x01,0x00,0x00,0x00},/*"*",9*/
|
||||
{0x00,0x80,0x80,0x80,0x80,0xF8,0xF8,0x80,0x80,0x80,0x80,0x00,0x00,0x01,0x01,0x01,0x01,0x1F,0x1F,0x01,0x01,0x01,0x01,0x00},/*"+",10*/
|
||||
{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x38,0x08,0x00,0x00,0x00,0x00,0x00},/*",",11*/
|
||||
{0x00,0x00,0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00},/*"-",12*/
|
||||
{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x18,0x00,0x00,0x00,0x00},/*".",13*/
|
||||
{0x00,0x00,0x00,0x00,0x00,0x80,0xE0,0x78,0x1E,0x06,0x00,0x00,0x00,0x00,0x60,0x78,0x1E,0x07,0x01,0x00,0x00,0x00,0x00,0x00},/*"/",14*/
|
||||
{0x00,0x00,0xF0,0xF8,0x1C,0x0C,0x1C,0xF8,0xF0,0x00,0x00,0x00,0x00,0x00,0x07,0x0F,0x1C,0x18,0x1C,0x0F,0x07,0x00,0x00,0x00},/*"0",15*/
|
||||
{0x00,0x00,0x18,0x18,0x18,0xFC,0xFC,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x18,0x1F,0x1F,0x18,0x18,0x18,0x00,0x00},/*"1",16*/
|
||||
{0x00,0x00,0x30,0x38,0x0C,0x0C,0x8C,0xF8,0x70,0x00,0x00,0x00,0x00,0x00,0x18,0x1C,0x1E,0x1B,0x19,0x18,0x18,0x00,0x00,0x00},/*"2",17*/
|
||||
{0x00,0x00,0x18,0x1C,0xCC,0xCC,0xCC,0xFC,0x38,0x00,0x00,0x00,0x00,0x0C,0x1C,0x18,0x18,0x18,0x19,0x0F,0x07,0x00,0x00,0x00},/*"3",18*/
|
||||
{0x00,0x00,0xC0,0xE0,0x78,0x1C,0xFC,0xFC,0x00,0x00,0x00,0x00,0x00,0x03,0x03,0x03,0x1B,0x1B,0x1F,0x1F,0x1B,0x00,0x00,0x00},/*"4",19*/
|
||||
{0x00,0x00,0xFC,0xFC,0xCC,0xCC,0xCC,0x8C,0x00,0x00,0x00,0x00,0x00,0x0C,0x1C,0x18,0x18,0x18,0x18,0x0F,0x07,0x00,0x00,0x00},/*"5",20*/
|
||||
{0x00,0x00,0xE0,0xF0,0xB8,0xDC,0xCC,0xCC,0x8C,0x00,0x00,0x00,0x00,0x00,0x07,0x0F,0x19,0x18,0x18,0x1F,0x0F,0x00,0x00,0x00},/*"6",21*/
|
||||
{0x00,0x00,0x1C,0x1C,0x0C,0x0C,0xCC,0xFC,0x3C,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1C,0x1F,0x03,0x00,0x00,0x00,0x00},/*"7",22*/
|
||||
{0x00,0x00,0x38,0xFC,0xCC,0xCC,0xCC,0xFC,0x38,0x00,0x00,0x00,0x00,0x00,0x0F,0x1F,0x18,0x18,0x18,0x1F,0x0F,0x00,0x00,0x00},/*"8",23*/
|
||||
{0x00,0x00,0xF8,0xFC,0x8C,0x8C,0xCC,0xF8,0xF0,0x00,0x00,0x00,0x00,0x00,0x18,0x19,0x19,0x1D,0x0E,0x07,0x03,0x00,0x00,0x00},/*"9",24*/
|
||||
{0x00,0x00,0x00,0x00,0x00,0x60,0x60,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x18,0x00,0x00,0x00,0x00},/*":",25*/
|
||||
{0x00,0x00,0x00,0x00,0x00,0x60,0x60,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x18,0x08,0x00,0x00,0x00,0x00,0x00},/*";",26*/
|
||||
{0x00,0x00,0x00,0x80,0x80,0xC0,0x60,0x60,0x30,0x30,0x00,0x00,0x00,0x01,0x01,0x03,0x03,0x06,0x0C,0x0C,0x18,0x18,0x00,0x00},/*"<",27*/
|
||||
{0x00,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0x00,0x00,0x00,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x00,0x00},/*"=",28*/
|
||||
{0x00,0x30,0x30,0x60,0x60,0xC0,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x0C,0x0C,0x06,0x03,0x03,0x01,0x01,0x00,0x00},/*">",29*/
|
||||
{0x00,0x00,0x70,0x78,0x18,0x18,0x98,0xF8,0xF0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1B,0x1B,0x01,0x01,0x00,0x00,0x00,0x00},/*"?",30*/
|
||||
{0x00,0x00,0xF0,0x08,0xC4,0x24,0x24,0xF8,0x00,0x00,0x00,0x00,0x00,0x00,0x0F,0x10,0x21,0x22,0x22,0x13,0x00,0x00,0x00,0x00},/*"@",31*/
|
||||
{0x00,0x00,0x18,0x98,0xF8,0x38,0x38,0xF0,0x80,0x00,0x00,0x00,0x00,0x18,0x1C,0x1F,0x1B,0x03,0x03,0x1B,0x1F,0x1C,0x18,0x00},/*"A",32*/
|
||||
{0x00,0x18,0xF8,0xF8,0x98,0x98,0x98,0xF8,0x70,0x00,0x00,0x00,0x00,0x18,0x1F,0x1F,0x19,0x19,0x19,0x19,0x1F,0x0E,0x00,0x00},/*"B",33*/
|
||||
{0x00,0xE0,0xF0,0x38,0x18,0x18,0x18,0x10,0x78,0x78,0x00,0x00,0x00,0x07,0x0F,0x0C,0x18,0x18,0x18,0x18,0x0C,0x0C,0x00,0x00},/*"C",34*/
|
||||
{0x00,0x18,0xF8,0xF8,0x18,0x18,0x18,0x38,0xF0,0xE0,0x00,0x00,0x00,0x18,0x1F,0x1F,0x18,0x18,0x18,0x1C,0x0F,0x07,0x00,0x00},/*"D",35*/
|
||||
{0x00,0x18,0xF8,0xF8,0x98,0xD8,0xD8,0x18,0x78,0x78,0x00,0x00,0x00,0x18,0x1F,0x1F,0x19,0x1B,0x1B,0x18,0x1E,0x1E,0x00,0x00},/*"E",36*/
|
||||
{0x00,0x18,0xF8,0xF8,0x98,0xD8,0xD8,0x18,0x78,0x78,0x00,0x00,0x00,0x18,0x1F,0x1F,0x19,0x1B,0x1B,0x00,0x00,0x00,0x00,0x00},/*"F",37*/
|
||||
{0x00,0xE0,0xF0,0x38,0x18,0x18,0x10,0x38,0x38,0x00,0x00,0x00,0x00,0x07,0x0F,0x1C,0x18,0x1B,0x1B,0x1F,0x0F,0x03,0x00,0x00},/*"G",38*/
|
||||
{0x00,0x18,0xF8,0xF8,0x98,0x80,0x98,0xF8,0xF8,0x18,0x00,0x00,0x00,0x18,0x1F,0x1F,0x19,0x01,0x19,0x1F,0x1F,0x18,0x00,0x00},/*"H",39*/
|
||||
{0x00,0x00,0x18,0x18,0x18,0xF8,0xF8,0x18,0x18,0x18,0x00,0x00,0x00,0x00,0x18,0x18,0x18,0x1F,0x1F,0x18,0x18,0x18,0x00,0x00},/*"I",40*/
|
||||
{0x00,0x00,0x00,0x00,0x18,0x18,0x18,0xF8,0xF8,0x18,0x18,0x00,0x00,0x00,0x0F,0x0F,0x18,0x18,0x18,0x0F,0x0F,0x00,0x00,0x00},/*"J",41*/
|
||||
{0x00,0x18,0xF8,0xF8,0x98,0xC0,0x78,0x38,0x18,0x18,0x00,0x00,0x00,0x18,0x1F,0x1F,0x19,0x01,0x07,0x1E,0x18,0x18,0x00,0x00},/*"K",42*/
|
||||
{0x00,0x18,0x18,0xF8,0xF8,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x1F,0x1F,0x18,0x18,0x18,0x1F,0x1F,0x00,0x00},/*"L",43*/
|
||||
{0x18,0xF8,0xF8,0x38,0xE0,0x00,0xE0,0x38,0xF8,0xF8,0x18,0x00,0x18,0x1F,0x1F,0x18,0x19,0x03,0x19,0x18,0x1F,0x1F,0x18,0x00},/*"M",44*/
|
||||
{0x00,0x18,0xF8,0xF8,0xF8,0xE0,0x18,0xF8,0xF8,0x18,0x00,0x00,0x00,0x18,0x1F,0x1F,0x18,0x03,0x1F,0x1F,0x1F,0x00,0x00,0x00},/*"N",45*/
|
||||
{0x00,0xC0,0xF0,0x30,0x18,0x18,0x18,0x30,0xF0,0xC0,0x00,0x00,0x00,0x03,0x0F,0x0C,0x18,0x18,0x18,0x0C,0x0F,0x03,0x00,0x00},/*"O",46*/
|
||||
{0x00,0x18,0xF8,0xF8,0x98,0x98,0x98,0xF8,0xF0,0x00,0x00,0x00,0x00,0x18,0x1F,0x1F,0x19,0x19,0x19,0x01,0x00,0x00,0x00,0x00},/*"P",47*/
|
||||
{0x00,0xC0,0xF0,0x30,0x18,0x18,0x18,0x30,0xF0,0xC0,0x00,0x00,0x00,0x03,0x0F,0xCC,0xF8,0x78,0x78,0xCC,0xEF,0x63,0x00,0x00},/*"Q",48*/
|
||||
{0x00,0x18,0xF8,0xF8,0x98,0x98,0x98,0xF8,0x70,0x00,0x00,0x00,0x00,0x18,0x1F,0x1F,0x19,0x1B,0x07,0x0E,0x1C,0x18,0x00,0x00},/*"R",49*/
|
||||
{0x00,0x00,0x70,0xF8,0x98,0x98,0x90,0x38,0x38,0x00,0x00,0x00,0x00,0x00,0x1C,0x1C,0x09,0x19,0x19,0x1F,0x0E,0x00,0x00,0x00},/*"S",50*/
|
||||
{0x00,0xF8,0xF8,0x18,0x18,0xF8,0xF8,0x18,0x18,0xF8,0xF8,0x00,0x00,0x00,0x00,0x18,0x18,0x1F,0x1F,0x18,0x18,0x00,0x00,0x00},/*"T",51*/
|
||||
{0x00,0x18,0xF8,0xF8,0x18,0x00,0x18,0xF8,0xF8,0x18,0x00,0x00,0x00,0x00,0x07,0x0F,0x18,0x18,0x18,0x0F,0x07,0x00,0x00,0x00},/*"U",52*/
|
||||
{0x00,0x18,0x78,0xF8,0x98,0x00,0x98,0xF8,0x78,0x18,0x00,0x00,0x00,0x00,0x00,0x03,0x1F,0x18,0x1F,0x03,0x00,0x00,0x00,0x00},/*"V",53*/
|
||||
{0x18,0xF8,0xF8,0x18,0xD8,0xC0,0xD8,0x18,0xF8,0xF8,0x18,0x00,0x00,0x01,0x1F,0x1C,0x1F,0x01,0x1F,0x1C,0x1F,0x01,0x00,0x00},/*"W",54*/
|
||||
{0x00,0x18,0x38,0x78,0xD8,0x80,0xD8,0x78,0x38,0x18,0x00,0x00,0x00,0x18,0x1C,0x1E,0x1B,0x01,0x1B,0x1E,0x1C,0x18,0x00,0x00},/*"X",55*/
|
||||
{0x00,0x18,0x38,0x78,0xD8,0x80,0x80,0xD8,0x78,0x38,0x18,0x00,0x00,0x00,0x00,0x18,0x18,0x1F,0x1F,0x18,0x18,0x00,0x00,0x00},/*"Y",56*/
|
||||
{0x00,0x00,0x78,0x78,0x18,0x98,0xD8,0x78,0x38,0x00,0x00,0x00,0x00,0x00,0x1C,0x1E,0x1B,0x19,0x18,0x1E,0x1E,0x00,0x00,0x00},/*"Z",57*/
|
||||
{0x00,0x00,0x00,0x00,0x00,0xFC,0xFC,0x0C,0x0C,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x7F,0x60,0x60,0x00,0x00,0x00},/*"[",58*/
|
||||
{0x00,0x00,0x06,0x1E,0x78,0xE0,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x07,0x1E,0x78,0x60,0x00,0x00},/*"\",59*/
|
||||
{0x00,0x00,0x00,0x0C,0x0C,0xFC,0xFC,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x60,0x7F,0x7F,0x00,0x00,0x00,0x00,0x00},/*"]",60*/
|
||||
{0x00,0x00,0x00,0x60,0x70,0x18,0x0C,0x18,0x70,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00},/*"^",61*/
|
||||
{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00},/*"_",62*/
|
||||
{0x00,0x00,0x00,0x00,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00},/*"`",63*/
|
||||
{0x00,0x00,0x00,0x60,0x60,0x60,0x60,0xE0,0xC0,0x00,0x00,0x00,0x00,0x00,0x0E,0x1F,0x1B,0x1B,0x0B,0x1F,0x1F,0x18,0x00,0x00},/*"a",64*/
|
||||
{0x00,0x0C,0xFC,0xFC,0xC0,0x60,0x60,0xE0,0xC0,0x80,0x00,0x00,0x00,0x18,0x1F,0x1F,0x0C,0x18,0x18,0x1C,0x0F,0x07,0x00,0x00},/*"b",65*/
|
||||
{0x00,0x00,0x80,0xC0,0xE0,0x60,0x60,0x60,0xC0,0xE0,0x00,0x00,0x00,0x00,0x07,0x0F,0x1C,0x18,0x18,0x18,0x18,0x0C,0x00,0x00},/*"c",66*/
|
||||
{0x00,0x00,0x80,0xC0,0xE0,0x60,0x60,0xCC,0xFC,0xFC,0x00,0x00,0x00,0x00,0x07,0x0F,0x1C,0x18,0x18,0x0C,0x1F,0x1F,0x18,0x00},/*"d",67*/
|
||||
{0x00,0x00,0x80,0xC0,0x60,0x60,0x60,0x60,0xC0,0x80,0x00,0x00,0x00,0x00,0x07,0x0F,0x1B,0x1B,0x1B,0x1B,0x1B,0x0B,0x00,0x00},/*"e",68*/
|
||||
{0x00,0x00,0x60,0x60,0xF8,0xFC,0x6C,0x6C,0x6C,0x6C,0x00,0x00,0x00,0x00,0x18,0x18,0x1F,0x1F,0x18,0x18,0x18,0x00,0x00,0x00},/*"f",69*/
|
||||
{0x00,0x00,0x80,0xC0,0xE0,0x60,0x60,0xC0,0xE0,0xE0,0x60,0x00,0x00,0x00,0x07,0x0F,0xDC,0xD8,0xD8,0xCC,0xFF,0x7F,0x00,0x00},/*"g",70*/
|
||||
{0x00,0x0C,0xFC,0xFC,0xC0,0x60,0x60,0x60,0xE0,0xC0,0x00,0x00,0x00,0x18,0x1F,0x1F,0x18,0x00,0x00,0x18,0x1F,0x1F,0x18,0x00},/*"h",71*/
|
||||
{0x00,0x00,0x00,0x60,0x60,0xEC,0xEC,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x18,0x1F,0x1F,0x18,0x18,0x18,0x00,0x00},/*"i",72*/
|
||||
{0x00,0x00,0x60,0x60,0x60,0x6C,0x6C,0xE0,0xE0,0x00,0x00,0x00,0x00,0x00,0xC0,0xC0,0xC0,0xC0,0xC0,0xFF,0x7F,0x00,0x00,0x00},/*"j",73*/
|
||||
{0x00,0x00,0x0C,0xFC,0xFC,0x80,0xE0,0x60,0x60,0x60,0x00,0x00,0x00,0x00,0x18,0x1F,0x1F,0x03,0x06,0x1C,0x18,0x18,0x00,0x00},/*"k",74*/
|
||||
{0x00,0x00,0x00,0x0C,0x0C,0xFC,0xFC,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x18,0x1F,0x1F,0x18,0x18,0x18,0x00,0x00},/*"l",75*/
|
||||
{0x00,0x60,0xE0,0xE0,0x60,0xE0,0xC0,0x60,0xE0,0xC0,0x00,0x00,0x00,0x18,0x1F,0x1F,0x00,0x1F,0x1F,0x00,0x1F,0x1F,0x18,0x00},/*"m",76*/
|
||||
{0x00,0x60,0xE0,0xE0,0xC0,0x60,0x60,0x60,0xE0,0xC0,0x00,0x00,0x00,0x18,0x1F,0x1F,0x18,0x00,0x00,0x18,0x1F,0x1F,0x18,0x00},/*"n",77*/
|
||||
{0x00,0x00,0x80,0xC0,0xE0,0x60,0x60,0xE0,0xC0,0x80,0x00,0x00,0x00,0x00,0x07,0x0F,0x1C,0x18,0x18,0x1C,0x0F,0x07,0x00,0x00},/*"o",78*/
|
||||
{0x00,0x60,0xE0,0xE0,0xC0,0x60,0x60,0xE0,0xC0,0x80,0x00,0x00,0x00,0xC0,0xFF,0xFF,0xCC,0xD8,0x18,0x1C,0x0F,0x07,0x00,0x00},/*"p",79*/
|
||||
{0x00,0x00,0x80,0xC0,0xE0,0x60,0x60,0xC0,0xE0,0xE0,0x60,0x00,0x00,0x00,0x07,0x0F,0x1C,0x18,0xD8,0xCC,0xFF,0xFF,0xC0,0x00},/*"q",80*/
|
||||
{0x00,0x00,0x60,0x60,0xE0,0xE0,0xC0,0x60,0x60,0x60,0x00,0x00,0x00,0x00,0x18,0x18,0x1F,0x1F,0x18,0x18,0x18,0x00,0x00,0x00},/*"r",81*/
|
||||
{0x00,0x00,0xC0,0xE0,0x60,0x60,0x60,0xE0,0xE0,0x00,0x00,0x00,0x00,0x00,0x1D,0x1D,0x1B,0x1B,0x1B,0x1E,0x0E,0x00,0x00,0x00},/*"s",82*/
|
||||
{0x00,0x00,0x60,0x60,0xFC,0xFC,0x60,0x60,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0F,0x1F,0x18,0x18,0x18,0x0C,0x00,0x00},/*"t",83*/
|
||||
{0x00,0x60,0xE0,0xE0,0x00,0x00,0x00,0x60,0xE0,0xE0,0x00,0x00,0x00,0x00,0x0F,0x1F,0x18,0x18,0x18,0x0C,0x1F,0x1F,0x18,0x00},/*"u",84*/
|
||||
{0x00,0x60,0xE0,0xE0,0x60,0x00,0x60,0xE0,0xE0,0x60,0x00,0x00,0x00,0x00,0x00,0x07,0x1F,0x18,0x1F,0x07,0x00,0x00,0x00,0x00},/*"v",85*/
|
||||
{0x60,0xE0,0xE0,0x60,0x00,0x80,0x00,0x60,0xE0,0xE0,0x60,0x00,0x00,0x01,0x1F,0x1E,0x07,0x03,0x07,0x1E,0x1F,0x01,0x00,0x00},/*"w",86*/
|
||||
{0x00,0x00,0x60,0xE0,0xE0,0x00,0x00,0xE0,0xE0,0x60,0x00,0x00,0x00,0x00,0x18,0x1C,0x1F,0x03,0x03,0x1F,0x1C,0x18,0x00,0x00},/*"x",87*/
|
||||
{0x00,0x60,0xE0,0xE0,0x60,0x00,0x00,0x60,0xE0,0xE0,0x60,0x00,0x00,0xC0,0xC0,0xC1,0xE7,0xFE,0xDC,0xC7,0x03,0x00,0x00,0x00},/*"y",88*/
|
||||
{0x00,0x00,0xE0,0xE0,0x60,0x60,0x60,0xE0,0xE0,0x60,0x00,0x00,0x00,0x00,0x18,0x1C,0x1E,0x1B,0x1B,0x19,0x1C,0x1C,0x00,0x00},/*"z",89*/
|
||||
{0x00,0x00,0x00,0x00,0x00,0xF8,0xFC,0x0C,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x3F,0x7E,0x60,0x00,0x00,0x00,0x00},/*"{",90*/
|
||||
{0x00,0x00,0x00,0x00,0x00,0xFC,0xFC,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x7F,0x00,0x00,0x00,0x00,0x00},/*"|",91*/
|
||||
{0x00,0x00,0x00,0x00,0x0C,0xFC,0xF8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x7E,0x3F,0x01,0x00,0x00,0x00,0x00},/*"}",92*/
|
||||
{0x00,0x00,0x80,0xC0,0xC0,0xC0,0x80,0x00,0x80,0x80,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x01,0x03,0x03,0x03,0x01,0x00,0x00},/*"~",93*/
|
||||
{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00},/*" ",94*/
|
||||
{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00},/*" ",0*/
|
||||
{0x00,0x00,0x00,0x00,0xFC,0xFC,0xFC,0xFC,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1B,0x1B,0x1B,0x1B,0x00,0x00,0x00,0x00},/*"!",1*/
|
||||
{0x00,0x00,0x00,0x18,0xF8,0x18,0x00,0x18,0xF8,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00},/*""",2*/
|
||||
{0x00,0x00,0x60,0x60,0xFE,0xFE,0x60,0xFE,0xFE,0x60,0x00,0x00,0x00,0x00,0x06,0x7F,0x7F,0x06,0x7F,0x7F,0x06,0x06,0x00,0x00},/*"#",3*/
|
||||
{0x00,0x00,0x00,0xF0,0xF8,0x9E,0x9E,0xB8,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x1C,0x1C,0xF9,0xF9,0x1F,0x0F,0x00,0x00,0x00},/*"$",4*/
|
||||
{0x00,0x00,0x38,0x44,0xC4,0xC4,0xB8,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x0E,0x11,0x11,0x11,0x0E,0x00,0x00,0x00},/*"%",5*/
|
||||
{0x00,0x00,0x60,0xE0,0xB0,0x30,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x0E,0x0F,0x19,0x19,0x1B,0x1E,0x0E,0x0F,0x1B,0x00,0x00},/*"&",6*/
|
||||
{0x00,0x00,0x00,0x00,0x00,0x18,0xF8,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00},/*"'",7*/
|
||||
{0x00,0x00,0x00,0x00,0x00,0xC0,0xF0,0x3C,0x0C,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x1F,0x78,0x60,0x00,0x00,0x00},/*"(",8*/
|
||||
{0x00,0x00,0x0C,0x3C,0xF0,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x78,0x1F,0x07,0x00,0x00,0x00,0x00,0x00,0x00},/*")",9*/
|
||||
{0x00,0x00,0x30,0xB0,0xF0,0xFC,0xFC,0xF0,0xB0,0x30,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x01,0x01,0x00,0x00,0x00},/*"*",10*/
|
||||
{0x00,0x80,0x80,0x80,0x80,0xF8,0xF8,0x80,0x80,0x80,0x80,0x00,0x00,0x01,0x01,0x01,0x01,0x1F,0x1F,0x01,0x01,0x01,0x01,0x00},/*"+",11*/
|
||||
{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x38,0x08,0x00,0x00,0x00,0x00,0x00},/*",",12*/
|
||||
{0x00,0x00,0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00},/*"-",13*/
|
||||
{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x18,0x00,0x00,0x00,0x00},/*".",14*/
|
||||
{0x00,0x00,0x00,0x00,0x00,0x80,0xE0,0x78,0x1E,0x06,0x00,0x00,0x00,0x00,0x60,0x78,0x1E,0x07,0x01,0x00,0x00,0x00,0x00,0x00},/*"/",15*/
|
||||
{0x00,0x00,0xF0,0xF8,0x1C,0x0C,0x1C,0xF8,0xF0,0x00,0x00,0x00,0x00,0x00,0x07,0x0F,0x1C,0x18,0x1C,0x0F,0x07,0x00,0x00,0x00},/*"0",16*/
|
||||
{0x00,0x00,0x18,0x18,0x18,0xFC,0xFC,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x18,0x1F,0x1F,0x18,0x18,0x18,0x00,0x00},/*"1",17*/
|
||||
{0x00,0x00,0x30,0x38,0x0C,0x0C,0x8C,0xF8,0x70,0x00,0x00,0x00,0x00,0x00,0x18,0x1C,0x1E,0x1B,0x19,0x18,0x18,0x00,0x00,0x00},/*"2",18*/
|
||||
{0x00,0x00,0x18,0x1C,0xCC,0xCC,0xCC,0xFC,0x38,0x00,0x00,0x00,0x00,0x0C,0x1C,0x18,0x18,0x18,0x19,0x0F,0x07,0x00,0x00,0x00},/*"3",19*/
|
||||
{0x00,0x00,0xC0,0xE0,0x78,0x1C,0xFC,0xFC,0x00,0x00,0x00,0x00,0x00,0x03,0x03,0x03,0x1B,0x1B,0x1F,0x1F,0x1B,0x00,0x00,0x00},/*"4",20*/
|
||||
{0x00,0x00,0xFC,0xFC,0xCC,0xCC,0xCC,0x8C,0x00,0x00,0x00,0x00,0x00,0x0C,0x1C,0x18,0x18,0x18,0x18,0x0F,0x07,0x00,0x00,0x00},/*"5",21*/
|
||||
{0x00,0x00,0xE0,0xF0,0xB8,0xDC,0xCC,0xCC,0x8C,0x00,0x00,0x00,0x00,0x00,0x07,0x0F,0x19,0x18,0x18,0x1F,0x0F,0x00,0x00,0x00},/*"6",22*/
|
||||
{0x00,0x00,0x1C,0x1C,0x0C,0x0C,0xCC,0xFC,0x3C,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1C,0x1F,0x03,0x00,0x00,0x00,0x00},/*"7",23*/
|
||||
{0x00,0x00,0x38,0xFC,0xCC,0xCC,0xCC,0xFC,0x38,0x00,0x00,0x00,0x00,0x00,0x0F,0x1F,0x18,0x18,0x18,0x1F,0x0F,0x00,0x00,0x00},/*"8",24*/
|
||||
{0x00,0x00,0xF8,0xFC,0x8C,0x8C,0xCC,0xF8,0xF0,0x00,0x00,0x00,0x00,0x00,0x18,0x19,0x19,0x1D,0x0E,0x07,0x03,0x00,0x00,0x00},/*"9",25*/
|
||||
{0x00,0x00,0x00,0x00,0x00,0x60,0x60,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x18,0x00,0x00,0x00,0x00},/*":",26*/
|
||||
{0x00,0x00,0x00,0x00,0x00,0x60,0x60,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x18,0x08,0x00,0x00,0x00,0x00,0x00},/*";",27*/
|
||||
{0x00,0x00,0x00,0x80,0x80,0xC0,0x60,0x60,0x30,0x30,0x00,0x00,0x00,0x01,0x01,0x03,0x03,0x06,0x0C,0x0C,0x18,0x18,0x00,0x00},/*"<",28*/
|
||||
{0x00,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0x00,0x00,0x00,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x00,0x00},/*"=",29*/
|
||||
{0x00,0x30,0x30,0x60,0x60,0xC0,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x0C,0x0C,0x06,0x03,0x03,0x01,0x01,0x00,0x00},/*">",30*/
|
||||
{0x00,0x00,0x70,0x78,0x18,0x18,0x98,0xF8,0xF0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1B,0x1B,0x01,0x01,0x00,0x00,0x00,0x00},/*"?",31*/
|
||||
{0x00,0x00,0xF0,0x08,0xC4,0x24,0x24,0xF8,0x00,0x00,0x00,0x00,0x00,0x00,0x0F,0x10,0x21,0x22,0x22,0x13,0x00,0x00,0x00,0x00},/*"@",32*/
|
||||
{0x00,0x00,0x18,0x98,0xF8,0x38,0x38,0xF0,0x80,0x00,0x00,0x00,0x00,0x18,0x1C,0x1F,0x1B,0x03,0x03,0x1B,0x1F,0x1C,0x18,0x00},/*"A",33*/
|
||||
{0x00,0x18,0xF8,0xF8,0x98,0x98,0x98,0xF8,0x70,0x00,0x00,0x00,0x00,0x18,0x1F,0x1F,0x19,0x19,0x19,0x19,0x1F,0x0E,0x00,0x00},/*"B",34*/
|
||||
{0x00,0xE0,0xF0,0x38,0x18,0x18,0x18,0x10,0x78,0x78,0x00,0x00,0x00,0x07,0x0F,0x0C,0x18,0x18,0x18,0x18,0x0C,0x0C,0x00,0x00},/*"C",35*/
|
||||
{0x00,0x18,0xF8,0xF8,0x18,0x18,0x18,0x38,0xF0,0xE0,0x00,0x00,0x00,0x18,0x1F,0x1F,0x18,0x18,0x18,0x1C,0x0F,0x07,0x00,0x00},/*"D",36*/
|
||||
{0x00,0x18,0xF8,0xF8,0x98,0xD8,0xD8,0x18,0x78,0x78,0x00,0x00,0x00,0x18,0x1F,0x1F,0x19,0x1B,0x1B,0x18,0x1E,0x1E,0x00,0x00},/*"E",37*/
|
||||
{0x00,0x18,0xF8,0xF8,0x98,0xD8,0xD8,0x18,0x78,0x78,0x00,0x00,0x00,0x18,0x1F,0x1F,0x19,0x1B,0x1B,0x00,0x00,0x00,0x00,0x00},/*"F",38*/
|
||||
{0x00,0xE0,0xF0,0x38,0x18,0x18,0x10,0x38,0x38,0x00,0x00,0x00,0x00,0x07,0x0F,0x1C,0x18,0x1B,0x1B,0x1F,0x0F,0x03,0x00,0x00},/*"G",39*/
|
||||
{0x00,0x18,0xF8,0xF8,0x98,0x80,0x98,0xF8,0xF8,0x18,0x00,0x00,0x00,0x18,0x1F,0x1F,0x19,0x01,0x19,0x1F,0x1F,0x18,0x00,0x00},/*"H",40*/
|
||||
{0x00,0x00,0x18,0x18,0x18,0xF8,0xF8,0x18,0x18,0x18,0x00,0x00,0x00,0x00,0x18,0x18,0x18,0x1F,0x1F,0x18,0x18,0x18,0x00,0x00},/*"I",41*/
|
||||
{0x00,0x00,0x00,0x00,0x18,0x18,0x18,0xF8,0xF8,0x18,0x18,0x00,0x00,0x00,0x0F,0x0F,0x18,0x18,0x18,0x0F,0x0F,0x00,0x00,0x00},/*"J",42*/
|
||||
{0x00,0x18,0xF8,0xF8,0x98,0xC0,0x78,0x38,0x18,0x18,0x00,0x00,0x00,0x18,0x1F,0x1F,0x19,0x01,0x07,0x1E,0x18,0x18,0x00,0x00},/*"K",43*/
|
||||
{0x00,0x18,0x18,0xF8,0xF8,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x1F,0x1F,0x18,0x18,0x18,0x1F,0x1F,0x00,0x00},/*"L",44*/
|
||||
{0x18,0xF8,0xF8,0x38,0xE0,0x00,0xE0,0x38,0xF8,0xF8,0x18,0x00,0x18,0x1F,0x1F,0x18,0x19,0x03,0x19,0x18,0x1F,0x1F,0x18,0x00},/*"M",45*/
|
||||
{0x00,0x18,0xF8,0xF8,0xF8,0xE0,0x18,0xF8,0xF8,0x18,0x00,0x00,0x00,0x18,0x1F,0x1F,0x18,0x03,0x1F,0x1F,0x1F,0x00,0x00,0x00},/*"N",46*/
|
||||
{0x00,0xC0,0xF0,0x30,0x18,0x18,0x18,0x30,0xF0,0xC0,0x00,0x00,0x00,0x03,0x0F,0x0C,0x18,0x18,0x18,0x0C,0x0F,0x03,0x00,0x00},/*"O",47*/
|
||||
{0x00,0x18,0xF8,0xF8,0x98,0x98,0x98,0xF8,0xF0,0x00,0x00,0x00,0x00,0x18,0x1F,0x1F,0x19,0x19,0x19,0x01,0x00,0x00,0x00,0x00},/*"P",48*/
|
||||
{0x00,0xC0,0xF0,0x30,0x18,0x18,0x18,0x30,0xF0,0xC0,0x00,0x00,0x00,0x03,0x0F,0xCC,0xF8,0x78,0x78,0xCC,0xEF,0x63,0x00,0x00},/*"Q",49*/
|
||||
{0x00,0x18,0xF8,0xF8,0x98,0x98,0x98,0xF8,0x70,0x00,0x00,0x00,0x00,0x18,0x1F,0x1F,0x19,0x1B,0x07,0x0E,0x1C,0x18,0x00,0x00},/*"R",50*/
|
||||
{0x00,0x00,0x70,0xF8,0x98,0x98,0x90,0x38,0x38,0x00,0x00,0x00,0x00,0x00,0x1C,0x1C,0x09,0x19,0x19,0x1F,0x0E,0x00,0x00,0x00},/*"S",51*/
|
||||
{0x00,0xF8,0xF8,0x18,0x18,0xF8,0xF8,0x18,0x18,0xF8,0xF8,0x00,0x00,0x00,0x00,0x18,0x18,0x1F,0x1F,0x18,0x18,0x00,0x00,0x00},/*"T",52*/
|
||||
{0x00,0x18,0xF8,0xF8,0x18,0x00,0x18,0xF8,0xF8,0x18,0x00,0x00,0x00,0x00,0x07,0x0F,0x18,0x18,0x18,0x0F,0x07,0x00,0x00,0x00},/*"U",53*/
|
||||
{0x00,0x18,0x78,0xF8,0x98,0x00,0x98,0xF8,0x78,0x18,0x00,0x00,0x00,0x00,0x00,0x03,0x1F,0x18,0x1F,0x03,0x00,0x00,0x00,0x00},/*"V",54*/
|
||||
{0x18,0xF8,0xF8,0x18,0xD8,0xC0,0xD8,0x18,0xF8,0xF8,0x18,0x00,0x00,0x01,0x1F,0x1C,0x1F,0x01,0x1F,0x1C,0x1F,0x01,0x00,0x00},/*"W",55*/
|
||||
{0x00,0x18,0x38,0x78,0xD8,0x80,0xD8,0x78,0x38,0x18,0x00,0x00,0x00,0x18,0x1C,0x1E,0x1B,0x01,0x1B,0x1E,0x1C,0x18,0x00,0x00},/*"X",56*/
|
||||
{0x00,0x18,0x38,0x78,0xD8,0x80,0x80,0xD8,0x78,0x38,0x18,0x00,0x00,0x00,0x00,0x18,0x18,0x1F,0x1F,0x18,0x18,0x00,0x00,0x00},/*"Y",57*/
|
||||
{0x00,0x00,0x78,0x78,0x18,0x98,0xD8,0x78,0x38,0x00,0x00,0x00,0x00,0x00,0x1C,0x1E,0x1B,0x19,0x18,0x1E,0x1E,0x00,0x00,0x00},/*"Z",58*/
|
||||
{0x00,0x00,0x00,0x00,0x00,0xFC,0xFC,0x0C,0x0C,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x7F,0x60,0x60,0x00,0x00,0x00},/*"[",59*/
|
||||
{0x00,0x00,0x06,0x1E,0x78,0xE0,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x07,0x1E,0x78,0x60,0x00,0x00},/*"\",60*/
|
||||
{0x00,0x00,0x00,0x0C,0x0C,0xFC,0xFC,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x60,0x7F,0x7F,0x00,0x00,0x00,0x00,0x00},/*"]",61*/
|
||||
{0x00,0x00,0x00,0x60,0x70,0x18,0x0C,0x18,0x70,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00},/*"^",62*/
|
||||
{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00},/*"_",63*/
|
||||
{0x00,0x00,0x00,0x00,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00},/*"`",64*/
|
||||
{0x00,0x00,0x00,0x60,0x60,0x60,0x60,0xE0,0xC0,0x00,0x00,0x00,0x00,0x00,0x0E,0x1F,0x1B,0x1B,0x0B,0x1F,0x1F,0x18,0x00,0x00},/*"a",65*/
|
||||
{0x00,0x0C,0xFC,0xFC,0xC0,0x60,0x60,0xE0,0xC0,0x80,0x00,0x00,0x00,0x18,0x1F,0x1F,0x0C,0x18,0x18,0x1C,0x0F,0x07,0x00,0x00},/*"b",66*/
|
||||
{0x00,0x00,0x80,0xC0,0xE0,0x60,0x60,0x60,0xC0,0xE0,0x00,0x00,0x00,0x00,0x07,0x0F,0x1C,0x18,0x18,0x18,0x18,0x0C,0x00,0x00},/*"c",67*/
|
||||
{0x00,0x00,0x80,0xC0,0xE0,0x60,0x60,0xCC,0xFC,0xFC,0x00,0x00,0x00,0x00,0x07,0x0F,0x1C,0x18,0x18,0x0C,0x1F,0x1F,0x18,0x00},/*"d",68*/
|
||||
{0x00,0x00,0x80,0xC0,0x60,0x60,0x60,0x60,0xC0,0x80,0x00,0x00,0x00,0x00,0x07,0x0F,0x1B,0x1B,0x1B,0x1B,0x1B,0x0B,0x00,0x00},/*"e",69*/
|
||||
{0x00,0x00,0x60,0x60,0xF8,0xFC,0x6C,0x6C,0x6C,0x6C,0x00,0x00,0x00,0x00,0x18,0x18,0x1F,0x1F,0x18,0x18,0x18,0x00,0x00,0x00},/*"f",70*/
|
||||
{0x00,0x00,0x80,0xC0,0xE0,0x60,0x60,0xC0,0xE0,0xE0,0x60,0x00,0x00,0x00,0x07,0x0F,0xDC,0xD8,0xD8,0xCC,0xFF,0x7F,0x00,0x00},/*"g",71*/
|
||||
{0x00,0x0C,0xFC,0xFC,0xC0,0x60,0x60,0x60,0xE0,0xC0,0x00,0x00,0x00,0x18,0x1F,0x1F,0x18,0x00,0x00,0x18,0x1F,0x1F,0x18,0x00},/*"h",72*/
|
||||
{0x00,0x00,0x00,0x60,0x60,0xEC,0xEC,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x18,0x1F,0x1F,0x18,0x18,0x18,0x00,0x00},/*"i",73*/
|
||||
{0x00,0x00,0x60,0x60,0x60,0x6C,0x6C,0xE0,0xE0,0x00,0x00,0x00,0x00,0x00,0xC0,0xC0,0xC0,0xC0,0xC0,0xFF,0x7F,0x00,0x00,0x00},/*"j",74*/
|
||||
{0x00,0x00,0x0C,0xFC,0xFC,0x80,0xE0,0x60,0x60,0x60,0x00,0x00,0x00,0x00,0x18,0x1F,0x1F,0x03,0x06,0x1C,0x18,0x18,0x00,0x00},/*"k",75*/
|
||||
{0x00,0x00,0x00,0x0C,0x0C,0xFC,0xFC,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x18,0x1F,0x1F,0x18,0x18,0x18,0x00,0x00},/*"l",76*/
|
||||
{0x00,0x60,0xE0,0xE0,0x60,0xE0,0xC0,0x60,0xE0,0xC0,0x00,0x00,0x00,0x18,0x1F,0x1F,0x00,0x1F,0x1F,0x00,0x1F,0x1F,0x18,0x00},/*"m",77*/
|
||||
{0x00,0x60,0xE0,0xE0,0xC0,0x60,0x60,0x60,0xE0,0xC0,0x00,0x00,0x00,0x18,0x1F,0x1F,0x18,0x00,0x00,0x18,0x1F,0x1F,0x18,0x00},/*"n",78*/
|
||||
{0x00,0x00,0x80,0xC0,0xE0,0x60,0x60,0xE0,0xC0,0x80,0x00,0x00,0x00,0x00,0x07,0x0F,0x1C,0x18,0x18,0x1C,0x0F,0x07,0x00,0x00},/*"o",79*/
|
||||
{0x00,0x60,0xE0,0xE0,0xC0,0x60,0x60,0xE0,0xC0,0x80,0x00,0x00,0x00,0xC0,0xFF,0xFF,0xCC,0xD8,0x18,0x1C,0x0F,0x07,0x00,0x00},/*"p",80*/
|
||||
{0x00,0x00,0x80,0xC0,0xE0,0x60,0x60,0xC0,0xE0,0xE0,0x60,0x00,0x00,0x00,0x07,0x0F,0x1C,0x18,0xD8,0xCC,0xFF,0xFF,0xC0,0x00},/*"q",81*/
|
||||
{0x00,0x00,0x60,0x60,0xE0,0xE0,0xC0,0x60,0x60,0x60,0x00,0x00,0x00,0x00,0x18,0x18,0x1F,0x1F,0x18,0x18,0x18,0x00,0x00,0x00},/*"r",82*/
|
||||
{0x00,0x00,0xC0,0xE0,0x60,0x60,0x60,0xE0,0xE0,0x00,0x00,0x00,0x00,0x00,0x1D,0x1D,0x1B,0x1B,0x1B,0x1E,0x0E,0x00,0x00,0x00},/*"s",83*/
|
||||
{0x00,0x00,0x60,0x60,0xFC,0xFC,0x60,0x60,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0F,0x1F,0x18,0x18,0x18,0x0C,0x00,0x00},/*"t",84*/
|
||||
{0x00,0x60,0xE0,0xE0,0x00,0x00,0x00,0x60,0xE0,0xE0,0x00,0x00,0x00,0x00,0x0F,0x1F,0x18,0x18,0x18,0x0C,0x1F,0x1F,0x18,0x00},/*"u",85*/
|
||||
{0x00,0x60,0xE0,0xE0,0x60,0x00,0x60,0xE0,0xE0,0x60,0x00,0x00,0x00,0x00,0x00,0x07,0x1F,0x18,0x1F,0x07,0x00,0x00,0x00,0x00},/*"v",86*/
|
||||
{0x60,0xE0,0xE0,0x60,0x00,0x80,0x00,0x60,0xE0,0xE0,0x60,0x00,0x00,0x01,0x1F,0x1E,0x07,0x03,0x07,0x1E,0x1F,0x01,0x00,0x00},/*"w",87*/
|
||||
{0x00,0x00,0x60,0xE0,0xE0,0x00,0x00,0xE0,0xE0,0x60,0x00,0x00,0x00,0x00,0x18,0x1C,0x1F,0x03,0x03,0x1F,0x1C,0x18,0x00,0x00},/*"x",88*/
|
||||
{0x00,0x60,0xE0,0xE0,0x60,0x00,0x00,0x60,0xE0,0xE0,0x60,0x00,0x00,0xC0,0xC0,0xC1,0xE7,0xFE,0xDC,0xC7,0x03,0x00,0x00,0x00},/*"y",89*/
|
||||
{0x00,0x00,0xE0,0xE0,0x60,0x60,0x60,0xE0,0xE0,0x60,0x00,0x00,0x00,0x00,0x18,0x1C,0x1E,0x1B,0x1B,0x19,0x1C,0x1C,0x00,0x00},/*"z",90*/
|
||||
{0x00,0x00,0x00,0x00,0x00,0xF8,0xFC,0x0C,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x3F,0x7E,0x60,0x00,0x00,0x00,0x00},/*"{",91*/
|
||||
{0x00,0x00,0x00,0x00,0x00,0xFC,0xFC,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x7F,0x00,0x00,0x00,0x00,0x00},/*"|",92*/
|
||||
{0x00,0x00,0x00,0x00,0x0C,0xFC,0xF8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x7E,0x3F,0x01,0x00,0x00,0x00,0x00},/*"}",93*/
|
||||
{0x00,0x00,0x80,0xC0,0xC0,0xC0,0x80,0x00,0x80,0x80,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x01,0x03,0x03,0x03,0x01,0x00,0x00},/*"~",94*/
|
||||
};
|
||||
|
||||
static const unsigned char blank_block PROGMEM = 0x00;
|
||||
|
||||
@@ -284,6 +284,93 @@
|
||||
{"matrix": [0, 12], "x": 18.5, "y": 5.5, "w": 2},
|
||||
{"matrix": [0, 13], "x": 20.5, "y": 5.5}
|
||||
]
|
||||
}
|
||||
},
|
||||
"LAYOUT_wheelwriter_1x_iso": {
|
||||
"layout": [
|
||||
{"matrix": [2, 2], "x": 0, "y": 0},
|
||||
|
||||
{"matrix": [2, 4], "x": 1.25, "y": 0},
|
||||
{"matrix": [3, 4], "x": 2.25, "y": 0},
|
||||
{"matrix": [3, 5], "x": 3.25, "y": 0},
|
||||
{"matrix": [3, 6], "x": 4.25, "y": 0},
|
||||
{"matrix": [3, 7], "x": 5.25, "y": 0},
|
||||
{"matrix": [2, 7], "x": 6.25, "y": 0},
|
||||
{"matrix": [2, 8], "x": 7.25, "y": 0},
|
||||
{"matrix": [3, 8], "x": 8.25, "y": 0},
|
||||
{"matrix": [3, 9], "x": 9.25, "y": 0},
|
||||
{"matrix": [3, 10], "x": 10.25, "y": 0},
|
||||
{"matrix": [3, 11], "x": 11.25, "y": 0},
|
||||
{"matrix": [2, 11], "x": 12.25, "y": 0},
|
||||
{"matrix": [2, 9], "x": 13.25, "y": 0},
|
||||
{"matrix": [2, 12], "x": 14.25, "y": 0, "w": 2},
|
||||
|
||||
{"matrix": [2, 13], "x": 17.5, "y": 0},
|
||||
|
||||
{"matrix": [4, 1], "x": 0, "y": 1},
|
||||
|
||||
{"matrix": [4, 2], "x": 1.25, "y": 1, "w": 1.5},
|
||||
{"matrix": [4, 4], "x": 2.75, "y": 1},
|
||||
{"matrix": [4, 5], "x": 3.75, "y": 1},
|
||||
{"matrix": [4, 6], "x": 4.75, "y": 1},
|
||||
{"matrix": [4, 7], "x": 5.75, "y": 1},
|
||||
{"matrix": [5, 7], "x": 6.75, "y": 1},
|
||||
{"matrix": [5, 8], "x": 7.75, "y": 1},
|
||||
{"matrix": [4, 8], "x": 8.75, "y": 1},
|
||||
{"matrix": [4, 9], "x": 9.75, "y": 1},
|
||||
{"matrix": [4, 10], "x": 10.75, "y": 1},
|
||||
{"matrix": [4, 11], "x": 11.75, "y": 1},
|
||||
{"matrix": [5, 11], "x": 12.75, "y": 1},
|
||||
{"matrix": [5, 9], "x": 13.75, "y": 1},
|
||||
|
||||
{"matrix": [4, 13], "x": 17.5, "y": 1},
|
||||
|
||||
{"matrix": [5, 2], "x": 0, "y": 2},
|
||||
|
||||
{"matrix": [6, 2], "x": 1.25, "y": 2, "w": 1.5},
|
||||
{"matrix": [1, 4], "x": 3, "y": 2},
|
||||
{"matrix": [1, 5], "x": 4, "y": 2},
|
||||
{"matrix": [1, 6], "x": 5, "y": 2},
|
||||
{"matrix": [1, 7], "x": 6, "y": 2},
|
||||
{"matrix": [0, 7], "x": 7, "y": 2},
|
||||
{"matrix": [0, 8], "x": 8, "y": 2},
|
||||
{"matrix": [1, 8], "x": 9, "y": 2},
|
||||
{"matrix": [1, 9], "x": 10, "y": 2},
|
||||
{"matrix": [1, 10], "x": 11, "y": 2},
|
||||
{"matrix": [1, 11], "x": 12, "y": 2},
|
||||
{"matrix": [0, 11], "x": 13, "y": 2},
|
||||
{"matrix": [6, 11], "x": 14, "y": 2},
|
||||
{"matrix": [0, 12], "x": 15, "y": 2, "w": 1.25, "h": 2},
|
||||
|
||||
{"matrix": [1, 13], "x": 17.5, "y": 2},
|
||||
|
||||
{"matrix": [1, 2], "x": 0, "y": 3},
|
||||
|
||||
{"matrix": [7, 3], "x": 1.25, "y": 3, "w": 1.25},
|
||||
{"matrix": [7, 4], "x": 2.5, "y": 3},
|
||||
{"matrix": [6, 4], "x": 3.5, "y": 3},
|
||||
{"matrix": [6, 5], "x": 4.5, "y": 3},
|
||||
{"matrix": [6, 6], "x": 5.5, "y": 3},
|
||||
{"matrix": [6, 7], "x": 6.5, "y": 3},
|
||||
{"matrix": [7, 7], "x": 7.5, "y": 3},
|
||||
{"matrix": [7, 8], "x": 8.5, "y": 3},
|
||||
{"matrix": [6, 8], "x": 9.5, "y": 3},
|
||||
{"matrix": [6, 9], "x": 10.5, "y": 3},
|
||||
{"matrix": [6, 10], "x": 11.5, "y": 3},
|
||||
{"matrix": [7, 11], "x": 12.5, "y": 3},
|
||||
{"matrix": [6, 3], "x": 13.5, "y": 3, "w": 2.75},
|
||||
|
||||
{"matrix": [6, 12], "x": 17.5, "y": 3},
|
||||
|
||||
{"matrix": [0, 1], "x": 0, "y": 4},
|
||||
|
||||
{"matrix": [7, 14], "x": 3.75, "y": 4, "w": 2.5},
|
||||
{"matrix": [7, 1], "x": 6.25, "y": 4, "w": 7.25},
|
||||
{"matrix": [7, 2], "x": 14.75, "y": 4, "w": 1.5},
|
||||
|
||||
{"matrix": [7, 12], "x": 16.5, "y": 4},
|
||||
{"matrix": [0, 13], "x": 17.5, "y": 4},
|
||||
{"matrix": [7, 13], "x": 18.5, "y": 4}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
/* Copyright 2024 Robin Haberkorn
|
||||
*
|
||||
* 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_wheelwriter_1x_iso( /* Base layer */
|
||||
KC_ESC, KC_GRV, 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_INS,
|
||||
KC_PGUP, 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_DEL,
|
||||
KC_PGDN, 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_NUHS, KC_ENT, MO(1),
|
||||
KC_APP, KC_LSFT, KC_NUBS, 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_LCTL, KC_LALT, KC_SPC, KC_RALT, KC_LEFT, KC_DOWN, KC_RGHT
|
||||
),
|
||||
[1] = LAYOUT_wheelwriter_1x_iso( /* Function key layer */
|
||||
KC_MUTE, KC_NO, 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_NO, KC_BRIU,
|
||||
KC_VOLU, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_BRID,
|
||||
KC_VOLD, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO,
|
||||
KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_PGUP,
|
||||
KC_NO, KC_NO, KC_NO, KC_NO, KC_HOME, KC_PGDN, KC_END
|
||||
),
|
||||
};
|
||||
@@ -17,4 +17,8 @@ Flashing example for this keyboard:
|
||||
|
||||
make ibm/model_m/modelh:default:flash
|
||||
|
||||
For IBM Wheelwriter 10/15/1000 modules (ISO), you can try the `wheelwriter_1x_iso` keymap:
|
||||
|
||||
make ibm/model_m/modelh:wheelwriter_1x_iso
|
||||
|
||||
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).
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
|
||||
/* Serial communication */
|
||||
/* Split keyboard configuration */
|
||||
#define EE_HANDS
|
||||
#define SERIAL_USART_FULL_DUPLEX
|
||||
#define SERIAL_USART_TX_PIN GP0
|
||||
#define SERIAL_USART_RX_PIN GP1
|
||||
|
||||
@@ -18,6 +18,8 @@ Flashing example for this keyboard:
|
||||
|
||||
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).
|
||||
|
||||
If you would like to plug in your keyboard using either half, then set the EEPROM left/right UF2 bootloader parameter when flashing each half for the first time. Refer to [QMK's handedness by EEPROM documentation](https://docs.qmk.fm/features/split_keyboard#handedness-by-eeprom). Without this bootloader parameter, the configuration assumes the left half will be plugged in.
|
||||
|
||||
## Bootloader
|
||||
|
||||
Enter the bootloader in 3 ways:
|
||||
|
||||
@@ -37,7 +37,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
* |------+------+------+------+------+------| |------+------+------+------+------+------|
|
||||
* | F1 | F2 | F3 | F4 | F5 | F6 | | F7 | F8 | F9 | F10 | F11 | F12 |
|
||||
* |------+------+------+------+------+------| |------+------+------+------+------+------|
|
||||
* | ` | ! | @ | # | $ | % |-------. ,-------| ^ | & | * | ( | ) | - |
|
||||
* | ` | ! | @ | # | $ | % |-------. ,-------| ^ | & | * | ( | ) | ~ |
|
||||
* |------+------+------+------+------+------| [ | | ] |------+------+------+------+------+------|
|
||||
* | | | | | | |-------| |-------| | _ | + | { | } | | |
|
||||
* `-----------------------------------------/ / \ \-----------------------------------------'
|
||||
|
||||
@@ -0,0 +1,389 @@
|
||||
{
|
||||
"manufacturer": "zlkb",
|
||||
"keyboard_name": "IRIS65",
|
||||
"maintainer": "5217zl",
|
||||
"bootloader": "atmel-dfu",
|
||||
"diode_direction": "COL2ROW",
|
||||
"features": {
|
||||
"bootmagic": true,
|
||||
"extrakey": true,
|
||||
"mousekey": true,
|
||||
"nkro": true
|
||||
},
|
||||
"matrix_pins": {
|
||||
"cols": ["B6", "C6", "C7", "F1", "F0", "E6", "B0", "B1", "B3", "B7", "D2", "D1", "D0", "D7", "B4", "B5"],
|
||||
"rows": ["F7", "F6", "F5", "B2", "F4"]
|
||||
},
|
||||
"processor": "atmega32u4",
|
||||
"url": "",
|
||||
"usb": {
|
||||
"device_version": "0.1.0",
|
||||
"pid": "0x4953",
|
||||
"vid": "0x5A4C"
|
||||
},
|
||||
"community_layouts": ["65_ansi_blocker", "65_ansi_blocker_split_bs", "65_iso_blocker", "65_iso_blocker_split_bs"],
|
||||
"layouts": {
|
||||
"LAYOUT_65_ansi_blocker": {
|
||||
"layout": [
|
||||
{"label": "0,0", "matrix": [0, 0], "x": 0, "y": 0},
|
||||
{"label": "0,1", "matrix": [0, 1], "x": 1, "y": 0},
|
||||
{"label": "0,2", "matrix": [0, 2], "x": 2, "y": 0},
|
||||
{"label": "0,3", "matrix": [0, 3], "x": 3, "y": 0},
|
||||
{"label": "0,4", "matrix": [0, 4], "x": 4, "y": 0},
|
||||
{"label": "0,5", "matrix": [0, 5], "x": 5, "y": 0},
|
||||
{"label": "0,6", "matrix": [0, 6], "x": 6, "y": 0},
|
||||
{"label": "0,7", "matrix": [0, 7], "x": 7, "y": 0},
|
||||
{"label": "0,8", "matrix": [0, 8], "x": 8, "y": 0},
|
||||
{"label": "0,9", "matrix": [0, 9], "x": 9, "y": 0},
|
||||
{"label": "0,10", "matrix": [0, 10], "x": 10, "y": 0},
|
||||
{"label": "0,11", "matrix": [0, 11], "x": 11, "y": 0},
|
||||
{"label": "0,12", "matrix": [0, 12], "x": 12, "y": 0},
|
||||
{"label": "0,14", "matrix": [0, 14], "x": 13, "y": 0, "w": 2},
|
||||
{"label": "0,15", "matrix": [0, 15], "x": 15, "y": 0},
|
||||
{"label": "1,0", "matrix": [1, 0], "x": 0, "y": 1, "w": 1.5},
|
||||
{"label": "1,1", "matrix": [1, 1], "x": 1.5, "y": 1},
|
||||
{"label": "1,2", "matrix": [1, 2], "x": 2.5, "y": 1},
|
||||
{"label": "1,3", "matrix": [1, 3], "x": 3.5, "y": 1},
|
||||
{"label": "1,4", "matrix": [1, 4], "x": 4.5, "y": 1},
|
||||
{"label": "1,5", "matrix": [1, 5], "x": 5.5, "y": 1},
|
||||
{"label": "1,6", "matrix": [1, 6], "x": 6.5, "y": 1},
|
||||
{"label": "1,7", "matrix": [1, 7], "x": 7.5, "y": 1},
|
||||
{"label": "1,,8", "matrix": [1, 8], "x": 8.5, "y": 1},
|
||||
{"label": "1,9", "matrix": [1, 9], "x": 9.5, "y": 1},
|
||||
{"label": "1,10", "matrix": [1, 10], "x": 10.5, "y": 1},
|
||||
{"label": "1,11", "matrix": [1, 11], "x": 11.5, "y": 1},
|
||||
{"label": "1,12", "matrix": [1, 12], "x": 12.5, "y": 1},
|
||||
{"label": "1,13", "matrix": [1, 13], "x": 13.5, "y": 1, "w": 1.5},
|
||||
{"label": "1,14", "matrix": [1, 14], "x": 15, "y": 1},
|
||||
{"label": "2,0", "matrix": [2, 0], "x": 0, "y": 2, "w": 1.75},
|
||||
{"label": "2,1", "matrix": [2, 1], "x": 1.75, "y": 2},
|
||||
{"label": "2,2", "matrix": [2, 2], "x": 2.75, "y": 2},
|
||||
{"label": "2,3", "matrix": [2, 3], "x": 3.75, "y": 2},
|
||||
{"label": "2,4", "matrix": [2, 4], "x": 4.75, "y": 2},
|
||||
{"label": "2,5", "matrix": [2, 5], "x": 5.75, "y": 2},
|
||||
{"label": "2,6", "matrix": [2, 6], "x": 6.75, "y": 2},
|
||||
{"label": "2,7", "matrix": [2, 7], "x": 7.75, "y": 2},
|
||||
{"label": "2,8", "matrix": [2, 8], "x": 8.75, "y": 2},
|
||||
{"label": "2,9", "matrix": [2, 9], "x": 9.75, "y": 2},
|
||||
{"label": "2,10", "matrix": [2, 10], "x": 10.75, "y": 2},
|
||||
{"label": "2,11", "matrix": [2, 11], "x": 11.75, "y": 2},
|
||||
{"label": "2,13", "matrix": [2, 13], "x": 12.75, "y": 2, "w": 2.25},
|
||||
{"label": "2,14", "matrix": [2, 14], "x": 15, "y": 2},
|
||||
{"label": "3,0", "matrix": [3, 0], "x": 0, "y": 3, "w": 2.25},
|
||||
{"label": "3,2", "matrix": [3, 2], "x": 2.25, "y": 3},
|
||||
{"label": "3,3", "matrix": [3, 3], "x": 3.25, "y": 3},
|
||||
{"label": "3,4", "matrix": [3, 4], "x": 4.25, "y": 3},
|
||||
{"label": "3,5", "matrix": [3, 5], "x": 5.25, "y": 3},
|
||||
{"label": "3,6", "matrix": [3, 6], "x": 6.25, "y": 3},
|
||||
{"label": "3,7", "matrix": [3, 7], "x": 7.25, "y": 3},
|
||||
{"label": "3,8", "matrix": [3, 8], "x": 8.25, "y": 3},
|
||||
{"label": "3,9", "matrix": [3, 9], "x": 9.25, "y": 3},
|
||||
{"label": "3,10", "matrix": [3, 10], "x": 10.25, "y": 3},
|
||||
{"label": "3,11", "matrix": [3, 11], "x": 11.25, "y": 3},
|
||||
{"label": "3,12", "matrix": [3, 12], "x": 12.25, "y": 3, "w": 1.75},
|
||||
{"label": "3,13", "matrix": [3, 13], "x": 14, "y": 3},
|
||||
{"label": "3,14", "matrix": [3, 14], "x": 15, "y": 3},
|
||||
{"label": "4,0", "matrix": [4, 0], "x": 0, "y": 4, "w": 1.25},
|
||||
{"label": "4,1", "matrix": [4, 1], "x": 1.25, "y": 4, "w": 1.25},
|
||||
{"label": "4,2", "matrix": [4, 2], "x": 2.5, "y": 4, "w": 1.25},
|
||||
{"label": "4,3", "matrix": [4, 3], "x": 3.75, "y": 4, "w": 6.25},
|
||||
{"label": "4,10", "matrix": [4, 10], "x": 10, "y": 4, "w": 1.25},
|
||||
{"label": "4,11", "matrix": [4, 11], "x": 11.25, "y": 4, "w": 1.25},
|
||||
{"label": "4,12", "matrix": [4, 12], "x": 13, "y": 4},
|
||||
{"label": "4,13", "matrix": [4, 13], "x": 14, "y": 4},
|
||||
{"label": "4,14", "matrix": [4, 14], "x": 15, "y": 4}
|
||||
]
|
||||
},
|
||||
"LAYOUT_65_ansi_blocker_split_bs": {
|
||||
"layout": [
|
||||
{"label": "0,0", "matrix": [0, 0], "x": 0, "y": 0},
|
||||
{"label": "0,1", "matrix": [0, 1], "x": 1, "y": 0},
|
||||
{"label": "0,2", "matrix": [0, 2], "x": 2, "y": 0},
|
||||
{"label": "0,3", "matrix": [0, 3], "x": 3, "y": 0},
|
||||
{"label": "0,4", "matrix": [0, 4], "x": 4, "y": 0},
|
||||
{"label": "0,5", "matrix": [0, 5], "x": 5, "y": 0},
|
||||
{"label": "0,6", "matrix": [0, 6], "x": 6, "y": 0},
|
||||
{"label": "0,7", "matrix": [0, 7], "x": 7, "y": 0},
|
||||
{"label": "0,8", "matrix": [0, 8], "x": 8, "y": 0},
|
||||
{"label": "0,9", "matrix": [0, 9], "x": 9, "y": 0},
|
||||
{"label": "0,10", "matrix": [0, 10], "x": 10, "y": 0},
|
||||
{"label": "0,11", "matrix": [0, 11], "x": 11, "y": 0},
|
||||
{"label": "0,12", "matrix": [0, 12], "x": 12, "y": 0},
|
||||
{"label": "0,13", "matrix": [0, 13], "x": 13, "y": 0},
|
||||
{"label": "0,14", "matrix": [0, 14], "x": 14, "y": 0},
|
||||
{"label": "0,15", "matrix": [0, 15], "x": 15, "y": 0},
|
||||
{"label": "1,0", "matrix": [1, 0], "x": 0, "y": 1, "w": 1.5},
|
||||
{"label": "1,1", "matrix": [1, 1], "x": 1.5, "y": 1},
|
||||
{"label": "1,2", "matrix": [1, 2], "x": 2.5, "y": 1},
|
||||
{"label": "1,3", "matrix": [1, 3], "x": 3.5, "y": 1},
|
||||
{"label": "1,4", "matrix": [1, 4], "x": 4.5, "y": 1},
|
||||
{"label": "1,5", "matrix": [1, 5], "x": 5.5, "y": 1},
|
||||
{"label": "1,6", "matrix": [1, 6], "x": 6.5, "y": 1},
|
||||
{"label": "1,7", "matrix": [1, 7], "x": 7.5, "y": 1},
|
||||
{"label": "1,,8", "matrix": [1, 8], "x": 8.5, "y": 1},
|
||||
{"label": "1,9", "matrix": [1, 9], "x": 9.5, "y": 1},
|
||||
{"label": "1,10", "matrix": [1, 10], "x": 10.5, "y": 1},
|
||||
{"label": "1,11", "matrix": [1, 11], "x": 11.5, "y": 1},
|
||||
{"label": "1,12", "matrix": [1, 12], "x": 12.5, "y": 1},
|
||||
{"label": "1,13", "matrix": [1, 13], "x": 13.5, "y": 1, "w": 1.5},
|
||||
{"label": "1,14", "matrix": [1, 14], "x": 15, "y": 1},
|
||||
{"label": "2,0", "matrix": [2, 0], "x": 0, "y": 2, "w": 1.75},
|
||||
{"label": "2,1", "matrix": [2, 1], "x": 1.75, "y": 2},
|
||||
{"label": "2,2", "matrix": [2, 2], "x": 2.75, "y": 2},
|
||||
{"label": "2,3", "matrix": [2, 3], "x": 3.75, "y": 2},
|
||||
{"label": "2,4", "matrix": [2, 4], "x": 4.75, "y": 2},
|
||||
{"label": "2,5", "matrix": [2, 5], "x": 5.75, "y": 2},
|
||||
{"label": "2,6", "matrix": [2, 6], "x": 6.75, "y": 2},
|
||||
{"label": "2,7", "matrix": [2, 7], "x": 7.75, "y": 2},
|
||||
{"label": "2,8", "matrix": [2, 8], "x": 8.75, "y": 2},
|
||||
{"label": "2,9", "matrix": [2, 9], "x": 9.75, "y": 2},
|
||||
{"label": "2,10", "matrix": [2, 10], "x": 10.75, "y": 2},
|
||||
{"label": "2,11", "matrix": [2, 11], "x": 11.75, "y": 2},
|
||||
{"label": "2,13", "matrix": [2, 13], "x": 12.75, "y": 2, "w": 2.25},
|
||||
{"label": "2,14", "matrix": [2, 14], "x": 15, "y": 2},
|
||||
{"label": "3,0", "matrix": [3, 0], "x": 0, "y": 3, "w": 2.25},
|
||||
{"label": "3,2", "matrix": [3, 2], "x": 2.25, "y": 3},
|
||||
{"label": "3,3", "matrix": [3, 3], "x": 3.25, "y": 3},
|
||||
{"label": "3,4", "matrix": [3, 4], "x": 4.25, "y": 3},
|
||||
{"label": "3,5", "matrix": [3, 5], "x": 5.25, "y": 3},
|
||||
{"label": "3,6", "matrix": [3, 6], "x": 6.25, "y": 3},
|
||||
{"label": "3,7", "matrix": [3, 7], "x": 7.25, "y": 3},
|
||||
{"label": "3,8", "matrix": [3, 8], "x": 8.25, "y": 3},
|
||||
{"label": "3,9", "matrix": [3, 9], "x": 9.25, "y": 3},
|
||||
{"label": "3,10", "matrix": [3, 10], "x": 10.25, "y": 3},
|
||||
{"label": "3,11", "matrix": [3, 11], "x": 11.25, "y": 3},
|
||||
{"label": "3,12", "matrix": [3, 12], "x": 12.25, "y": 3, "w": 1.75},
|
||||
{"label": "3,13", "matrix": [3, 13], "x": 14, "y": 3},
|
||||
{"label": "3,14", "matrix": [3, 14], "x": 15, "y": 3},
|
||||
{"label": "4,0", "matrix": [4, 0], "x": 0, "y": 4, "w": 1.25},
|
||||
{"label": "4,1", "matrix": [4, 1], "x": 1.25, "y": 4, "w": 1.25},
|
||||
{"label": "4,2", "matrix": [4, 2], "x": 2.5, "y": 4, "w": 1.25},
|
||||
{"label": "4,3", "matrix": [4, 3], "x": 3.75, "y": 4, "w": 6.25},
|
||||
{"label": "4,10", "matrix": [4, 10], "x": 10, "y": 4, "w": 1.25},
|
||||
{"label": "4,11", "matrix": [4, 11], "x": 11.25, "y": 4, "w": 1.25},
|
||||
{"label": "4,12", "matrix": [4, 12], "x": 13, "y": 4},
|
||||
{"label": "4,13", "matrix": [4, 13], "x": 14, "y": 4},
|
||||
{"label": "4,14", "matrix": [4, 14], "x": 15, "y": 4}
|
||||
]
|
||||
},
|
||||
"LAYOUT_65_iso_blocker": {
|
||||
"layout": [
|
||||
{"label": "0,0", "matrix": [0, 0], "x": 0, "y": 0},
|
||||
{"label": "0,1", "matrix": [0, 1], "x": 1, "y": 0},
|
||||
{"label": "0,2", "matrix": [0, 2], "x": 2, "y": 0},
|
||||
{"label": "0,3", "matrix": [0, 3], "x": 3, "y": 0},
|
||||
{"label": "0,4", "matrix": [0, 4], "x": 4, "y": 0},
|
||||
{"label": "0,5", "matrix": [0, 5], "x": 5, "y": 0},
|
||||
{"label": "0,6", "matrix": [0, 6], "x": 6, "y": 0},
|
||||
{"label": "0,7", "matrix": [0, 7], "x": 7, "y": 0},
|
||||
{"label": "0,8", "matrix": [0, 8], "x": 8, "y": 0},
|
||||
{"label": "0,9", "matrix": [0, 9], "x": 9, "y": 0},
|
||||
{"label": "0,10", "matrix": [0, 10], "x": 10, "y": 0},
|
||||
{"label": "0,11", "matrix": [0, 11], "x": 11, "y": 0},
|
||||
{"label": "0,12", "matrix": [0, 12], "x": 12, "y": 0},
|
||||
{"label": "0,14", "matrix": [0, 14], "x": 13, "y": 0, "w": 2},
|
||||
{"label": "0,15", "matrix": [0, 15], "x": 15, "y": 0},
|
||||
{"label": "1,0", "matrix": [1, 0], "x": 0, "y": 1, "w": 1.5},
|
||||
{"label": "1,1", "matrix": [1, 1], "x": 1.5, "y": 1},
|
||||
{"label": "1,2", "matrix": [1, 2], "x": 2.5, "y": 1},
|
||||
{"label": "1,3", "matrix": [1, 3], "x": 3.5, "y": 1},
|
||||
{"label": "1,4", "matrix": [1, 4], "x": 4.5, "y": 1},
|
||||
{"label": "1,5", "matrix": [1, 5], "x": 5.5, "y": 1},
|
||||
{"label": "1,6", "matrix": [1, 6], "x": 6.5, "y": 1},
|
||||
{"label": "1,7", "matrix": [1, 7], "x": 7.5, "y": 1},
|
||||
{"label": "1,,8", "matrix": [1, 8], "x": 8.5, "y": 1},
|
||||
{"label": "1,9", "matrix": [1, 9], "x": 9.5, "y": 1},
|
||||
{"label": "1,10", "matrix": [1, 10], "x": 10.5, "y": 1},
|
||||
{"label": "1,11", "matrix": [1, 11], "x": 11.5, "y": 1},
|
||||
{"label": "1,12", "matrix": [1, 12], "x": 12.5, "y": 1},
|
||||
{"label": "1,14", "matrix": [1, 14], "x": 15, "y": 1},
|
||||
{"label": "2,0", "matrix": [2, 0], "x": 0, "y": 2, "w": 1.75},
|
||||
{"label": "2,1", "matrix": [2, 1], "x": 1.75, "y": 2},
|
||||
{"label": "2,2", "matrix": [2, 2], "x": 2.75, "y": 2},
|
||||
{"label": "2,3", "matrix": [2, 3], "x": 3.75, "y": 2},
|
||||
{"label": "2,4", "matrix": [2, 4], "x": 4.75, "y": 2},
|
||||
{"label": "2,5", "matrix": [2, 5], "x": 5.75, "y": 2},
|
||||
{"label": "2,6", "matrix": [2, 6], "x": 6.75, "y": 2},
|
||||
{"label": "2,7", "matrix": [2, 7], "x": 7.75, "y": 2},
|
||||
{"label": "2,8", "matrix": [2, 8], "x": 8.75, "y": 2},
|
||||
{"label": "2,9", "matrix": [2, 9], "x": 9.75, "y": 2},
|
||||
{"label": "2,10", "matrix": [2, 10], "x": 10.75, "y": 2},
|
||||
{"label": "2,11", "matrix": [2, 11], "x": 11.75, "y": 2},
|
||||
{"label": "2,12", "matrix": [2, 12], "x": 12.75, "y": 2},
|
||||
{"label": "2,13", "matrix": [2, 13], "x": 13.75, "y": 1, "w": 1.25, "h": 2},
|
||||
{"label": "2,14", "matrix": [2, 14], "x": 15, "y": 2},
|
||||
{"label": "3,0", "matrix": [3, 0], "x": 0, "y": 3, "w": 1.25},
|
||||
{"label": "3,1", "matrix": [3, 1], "x": 1.25, "y": 3},
|
||||
{"label": "3,2", "matrix": [3, 2], "x": 2.25, "y": 3},
|
||||
{"label": "3,3", "matrix": [3, 3], "x": 3.25, "y": 3},
|
||||
{"label": "3,4", "matrix": [3, 4], "x": 4.25, "y": 3},
|
||||
{"label": "3,5", "matrix": [3, 5], "x": 5.25, "y": 3},
|
||||
{"label": "3,6", "matrix": [3, 6], "x": 6.25, "y": 3},
|
||||
{"label": "3,7", "matrix": [3, 7], "x": 7.25, "y": 3},
|
||||
{"label": "3,8", "matrix": [3, 8], "x": 8.25, "y": 3},
|
||||
{"label": "3,9", "matrix": [3, 9], "x": 9.25, "y": 3},
|
||||
{"label": "3,10", "matrix": [3, 10], "x": 10.25, "y": 3},
|
||||
{"label": "3,11", "matrix": [3, 11], "x": 11.25, "y": 3},
|
||||
{"label": "3,12", "matrix": [3, 12], "x": 12.25, "y": 3, "w": 1.75},
|
||||
{"label": "3,13", "matrix": [3, 13], "x": 14, "y": 3},
|
||||
{"label": "3,14", "matrix": [3, 14], "x": 15, "y": 3},
|
||||
{"label": "4,0", "matrix": [4, 0], "x": 0, "y": 4, "w": 1.25},
|
||||
{"label": "4,1", "matrix": [4, 1], "x": 1.25, "y": 4, "w": 1.25},
|
||||
{"label": "4,2", "matrix": [4, 2], "x": 2.5, "y": 4, "w": 1.25},
|
||||
{"label": "4,3", "matrix": [4, 3], "x": 3.75, "y": 4, "w": 6.25},
|
||||
{"label": "4,10", "matrix": [4, 10], "x": 10, "y": 4, "w": 1.25},
|
||||
{"label": "4,11", "matrix": [4, 11], "x": 11.25, "y": 4, "w": 1.25},
|
||||
{"label": "4,12", "matrix": [4, 12], "x": 13, "y": 4},
|
||||
{"label": "4,13", "matrix": [4, 13], "x": 14, "y": 4},
|
||||
{"label": "4,14", "matrix": [4, 14], "x": 15, "y": 4}
|
||||
]
|
||||
},
|
||||
"LAYOUT_65_iso_blocker_split_bs": {
|
||||
"layout": [
|
||||
{"label": "0,0", "matrix": [0, 0], "x": 0, "y": 0},
|
||||
{"label": "0,1", "matrix": [0, 1], "x": 1, "y": 0},
|
||||
{"label": "0,2", "matrix": [0, 2], "x": 2, "y": 0},
|
||||
{"label": "0,3", "matrix": [0, 3], "x": 3, "y": 0},
|
||||
{"label": "0,4", "matrix": [0, 4], "x": 4, "y": 0},
|
||||
{"label": "0,5", "matrix": [0, 5], "x": 5, "y": 0},
|
||||
{"label": "0,6", "matrix": [0, 6], "x": 6, "y": 0},
|
||||
{"label": "0,7", "matrix": [0, 7], "x": 7, "y": 0},
|
||||
{"label": "0,8", "matrix": [0, 8], "x": 8, "y": 0},
|
||||
{"label": "0,9", "matrix": [0, 9], "x": 9, "y": 0},
|
||||
{"label": "0,10", "matrix": [0, 10], "x": 10, "y": 0},
|
||||
{"label": "0,11", "matrix": [0, 11], "x": 11, "y": 0},
|
||||
{"label": "0,12", "matrix": [0, 12], "x": 12, "y": 0},
|
||||
{"label": "0,13", "matrix": [0, 13], "x": 13, "y": 0},
|
||||
{"label": "0,14", "matrix": [0, 14], "x": 14, "y": 0},
|
||||
{"label": "0,15", "matrix": [0, 15], "x": 15, "y": 0},
|
||||
{"label": "1,0", "matrix": [1, 0], "x": 0, "y": 1, "w": 1.5},
|
||||
{"label": "1,1", "matrix": [1, 1], "x": 1.5, "y": 1},
|
||||
{"label": "1,2", "matrix": [1, 2], "x": 2.5, "y": 1},
|
||||
{"label": "1,3", "matrix": [1, 3], "x": 3.5, "y": 1},
|
||||
{"label": "1,4", "matrix": [1, 4], "x": 4.5, "y": 1},
|
||||
{"label": "1,5", "matrix": [1, 5], "x": 5.5, "y": 1},
|
||||
{"label": "1,6", "matrix": [1, 6], "x": 6.5, "y": 1},
|
||||
{"label": "1,7", "matrix": [1, 7], "x": 7.5, "y": 1},
|
||||
{"label": "1,,8", "matrix": [1, 8], "x": 8.5, "y": 1},
|
||||
{"label": "1,9", "matrix": [1, 9], "x": 9.5, "y": 1},
|
||||
{"label": "1,10", "matrix": [1, 10], "x": 10.5, "y": 1},
|
||||
{"label": "1,11", "matrix": [1, 11], "x": 11.5, "y": 1},
|
||||
{"label": "1,12", "matrix": [1, 12], "x": 12.5, "y": 1},
|
||||
{"label": "1,14", "matrix": [1, 14], "x": 15, "y": 1},
|
||||
{"label": "2,0", "matrix": [2, 0], "x": 0, "y": 2, "w": 1.75},
|
||||
{"label": "2,1", "matrix": [2, 1], "x": 1.75, "y": 2},
|
||||
{"label": "2,2", "matrix": [2, 2], "x": 2.75, "y": 2},
|
||||
{"label": "2,3", "matrix": [2, 3], "x": 3.75, "y": 2},
|
||||
{"label": "2,4", "matrix": [2, 4], "x": 4.75, "y": 2},
|
||||
{"label": "2,5", "matrix": [2, 5], "x": 5.75, "y": 2},
|
||||
{"label": "2,6", "matrix": [2, 6], "x": 6.75, "y": 2},
|
||||
{"label": "2,7", "matrix": [2, 7], "x": 7.75, "y": 2},
|
||||
{"label": "2,8", "matrix": [2, 8], "x": 8.75, "y": 2},
|
||||
{"label": "2,9", "matrix": [2, 9], "x": 9.75, "y": 2},
|
||||
{"label": "2,10", "matrix": [2, 10], "x": 10.75, "y": 2},
|
||||
{"label": "2,11", "matrix": [2, 11], "x": 11.75, "y": 2},
|
||||
{"label": "2,12", "matrix": [2, 12], "x": 12.75, "y": 2},
|
||||
{"label": "2,13", "matrix": [2, 13], "x": 13.75, "y": 1, "w": 1.25, "h": 2},
|
||||
{"label": "2,14", "matrix": [2, 14], "x": 15, "y": 2},
|
||||
{"label": "3,0", "matrix": [3, 0], "x": 0, "y": 3, "w": 1.25},
|
||||
{"label": "3,1", "matrix": [3, 1], "x": 1.25, "y": 3},
|
||||
{"label": "3,2", "matrix": [3, 2], "x": 2.25, "y": 3},
|
||||
{"label": "3,3", "matrix": [3, 3], "x": 3.25, "y": 3},
|
||||
{"label": "3,4", "matrix": [3, 4], "x": 4.25, "y": 3},
|
||||
{"label": "3,5", "matrix": [3, 5], "x": 5.25, "y": 3},
|
||||
{"label": "3,6", "matrix": [3, 6], "x": 6.25, "y": 3},
|
||||
{"label": "3,7", "matrix": [3, 7], "x": 7.25, "y": 3},
|
||||
{"label": "3,8", "matrix": [3, 8], "x": 8.25, "y": 3},
|
||||
{"label": "3,9", "matrix": [3, 9], "x": 9.25, "y": 3},
|
||||
{"label": "3,10", "matrix": [3, 10], "x": 10.25, "y": 3},
|
||||
{"label": "3,11", "matrix": [3, 11], "x": 11.25, "y": 3},
|
||||
{"label": "3,12", "matrix": [3, 12], "x": 12.25, "y": 3, "w": 1.75},
|
||||
{"label": "3,13", "matrix": [3, 13], "x": 14, "y": 3},
|
||||
{"label": "3,14", "matrix": [3, 14], "x": 15, "y": 3},
|
||||
{"label": "4,0", "matrix": [4, 0], "x": 0, "y": 4, "w": 1.25},
|
||||
{"label": "4,1", "matrix": [4, 1], "x": 1.25, "y": 4, "w": 1.25},
|
||||
{"label": "4,2", "matrix": [4, 2], "x": 2.5, "y": 4, "w": 1.25},
|
||||
{"label": "4,3", "matrix": [4, 3], "x": 3.75, "y": 4, "w": 6.25},
|
||||
{"label": "4,10", "matrix": [4, 10], "x": 10, "y": 4, "w": 1.25},
|
||||
{"label": "4,11", "matrix": [4, 11], "x": 11.25, "y": 4, "w": 1.25},
|
||||
{"label": "4,12", "matrix": [4, 12], "x": 13, "y": 4},
|
||||
{"label": "4,13", "matrix": [4, 13], "x": 14, "y": 4},
|
||||
{"label": "4,14", "matrix": [4, 14], "x": 15, "y": 4}
|
||||
]
|
||||
},
|
||||
"LAYOUT_all": {
|
||||
"layout": [
|
||||
{"label": "0,0", "matrix": [0, 0], "x": 0, "y": 0},
|
||||
{"label": "0,1", "matrix": [0, 1], "x": 1, "y": 0},
|
||||
{"label": "0,2", "matrix": [0, 2], "x": 2, "y": 0},
|
||||
{"label": "0,3", "matrix": [0, 3], "x": 3, "y": 0},
|
||||
{"label": "0,4", "matrix": [0, 4], "x": 4, "y": 0},
|
||||
{"label": "0,5", "matrix": [0, 5], "x": 5, "y": 0},
|
||||
{"label": "0,6", "matrix": [0, 6], "x": 6, "y": 0},
|
||||
{"label": "0,7", "matrix": [0, 7], "x": 7, "y": 0},
|
||||
{"label": "0,8", "matrix": [0, 8], "x": 8, "y": 0},
|
||||
{"label": "0,9", "matrix": [0, 9], "x": 9, "y": 0},
|
||||
{"label": "0,10", "matrix": [0, 10], "x": 10, "y": 0},
|
||||
{"label": "0,11", "matrix": [0, 11], "x": 11, "y": 0},
|
||||
{"label": "0,12", "matrix": [0, 12], "x": 12, "y": 0},
|
||||
{"label": "0,13", "matrix": [0, 13], "x": 13, "y": 0},
|
||||
{"label": "0,14", "matrix": [0, 14], "x": 14, "y": 0},
|
||||
{"label": "0,15", "matrix": [0, 15], "x": 15, "y": 0},
|
||||
{"label": "1,0", "matrix": [1, 0], "x": 0, "y": 1, "w": 1.5},
|
||||
{"label": "1,1", "matrix": [1, 1], "x": 1.5, "y": 1},
|
||||
{"label": "1,2", "matrix": [1, 2], "x": 2.5, "y": 1},
|
||||
{"label": "1,3", "matrix": [1, 3], "x": 3.5, "y": 1},
|
||||
{"label": "1,4", "matrix": [1, 4], "x": 4.5, "y": 1},
|
||||
{"label": "1,5", "matrix": [1, 5], "x": 5.5, "y": 1},
|
||||
{"label": "1,6", "matrix": [1, 6], "x": 6.5, "y": 1},
|
||||
{"label": "1,7", "matrix": [1, 7], "x": 7.5, "y": 1},
|
||||
{"label": "1,,8", "matrix": [1, 8], "x": 8.5, "y": 1},
|
||||
{"label": "1,9", "matrix": [1, 9], "x": 9.5, "y": 1},
|
||||
{"label": "1,10", "matrix": [1, 10], "x": 10.5, "y": 1},
|
||||
{"label": "1,11", "matrix": [1, 11], "x": 11.5, "y": 1},
|
||||
{"label": "1,12", "matrix": [1, 12], "x": 12.5, "y": 1},
|
||||
{"label": "1,13", "matrix": [1, 13], "x": 13.5, "y": 1, "w": 1.5},
|
||||
{"label": "1,14", "matrix": [1, 14], "x": 15, "y": 1},
|
||||
{"label": "2,0", "matrix": [2, 0], "x": 0, "y": 2, "w": 1.75},
|
||||
{"label": "2,1", "matrix": [2, 1], "x": 1.75, "y": 2},
|
||||
{"label": "2,2", "matrix": [2, 2], "x": 2.75, "y": 2},
|
||||
{"label": "2,3", "matrix": [2, 3], "x": 3.75, "y": 2},
|
||||
{"label": "2,4", "matrix": [2, 4], "x": 4.75, "y": 2},
|
||||
{"label": "2,5", "matrix": [2, 5], "x": 5.75, "y": 2},
|
||||
{"label": "2,6", "matrix": [2, 6], "x": 6.75, "y": 2},
|
||||
{"label": "2,7", "matrix": [2, 7], "x": 7.75, "y": 2},
|
||||
{"label": "2,8", "matrix": [2, 8], "x": 8.75, "y": 2},
|
||||
{"label": "2,9", "matrix": [2, 9], "x": 9.75, "y": 2},
|
||||
{"label": "2,10", "matrix": [2, 10], "x": 10.75, "y": 2},
|
||||
{"label": "2,11", "matrix": [2, 11], "x": 11.75, "y": 2},
|
||||
{"label": "2,12", "matrix": [2, 12], "x": 12.75, "y": 2},
|
||||
{"label": "2,13", "matrix": [2, 13], "x": 13.75, "y": 2, "w": 1.25},
|
||||
{"label": "2,14", "matrix": [2, 14], "x": 15, "y": 2},
|
||||
{"label": "3,0", "matrix": [3, 0], "x": 0, "y": 3, "w": 1.25},
|
||||
{"label": "3,1", "matrix": [3, 1], "x": 1.25, "y": 3},
|
||||
{"label": "3,2", "matrix": [3, 2], "x": 2.25, "y": 3},
|
||||
{"label": "3,3", "matrix": [3, 3], "x": 3.25, "y": 3},
|
||||
{"label": "3,4", "matrix": [3, 4], "x": 4.25, "y": 3},
|
||||
{"label": "3,5", "matrix": [3, 5], "x": 5.25, "y": 3},
|
||||
{"label": "3,6", "matrix": [3, 6], "x": 6.25, "y": 3},
|
||||
{"label": "3,7", "matrix": [3, 7], "x": 7.25, "y": 3},
|
||||
{"label": "3,8", "matrix": [3, 8], "x": 8.25, "y": 3},
|
||||
{"label": "3,9", "matrix": [3, 9], "x": 9.25, "y": 3},
|
||||
{"label": "3,10", "matrix": [3, 10], "x": 10.25, "y": 3},
|
||||
{"label": "3,11", "matrix": [3, 11], "x": 11.25, "y": 3},
|
||||
{"label": "3,12", "matrix": [3, 12], "x": 12.25, "y": 3, "w": 1.75},
|
||||
{"label": "3,13", "matrix": [3, 13], "x": 14, "y": 3},
|
||||
{"label": "3,14", "matrix": [3, 14], "x": 15, "y": 3},
|
||||
{"label": "4,0", "matrix": [4, 0], "x": 0, "y": 4, "w": 1.25},
|
||||
{"label": "4,1", "matrix": [4, 1], "x": 1.25, "y": 4, "w": 1.25},
|
||||
{"label": "4,2", "matrix": [4, 2], "x": 2.5, "y": 4, "w": 1.25},
|
||||
{"label": "4,3", "matrix": [4, 3], "x": 3.75, "y": 4, "w": 6.25},
|
||||
{"label": "4,10", "matrix": [4, 10], "x": 10, "y": 4, "w": 1.25},
|
||||
{"label": "4,11", "matrix": [4, 11], "x": 11.25, "y": 4, "w": 1.25},
|
||||
{"label": "4,12", "matrix": [4, 12], "x": 13, "y": 4},
|
||||
{"label": "4,13", "matrix": [4, 13], "x": 14, "y": 4},
|
||||
{"label": "4,14", "matrix": [4, 14], "x": 15, "y": 4}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"keyboard": "mykeyclub/jris65/hotswap",
|
||||
"keymap": "default",
|
||||
"layout": "LAYOUT_all",
|
||||
"layers": [
|
||||
[
|
||||
"KC_ESC", "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_BSLS", "KC_BSPC", "KC_PGUP",
|
||||
"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_PGDN",
|
||||
"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_BSLS", "KC_ENT", "KC_END",
|
||||
"KC_LSFT", "KC_BSLS", "KC_Z", "KC_X", "KC_C", "KC_V", "KC_B", "KC_N", "KC_M", "KC_DOT", "KC_COMM", "KC_SLSH", "KC_RSFT", "KC_UP", "KC_DEL",
|
||||
"KC_LCTL", "KC_LGUI", "KC_LALT", "KC_SPC", "KC_RALT", "MO(1)", "KC_LEFT", "KC_DOWN", "KC_RGHT"
|
||||
],
|
||||
[
|
||||
"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", "QK_BOOT", "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"
|
||||
]
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
# JRIS65
|
||||
|
||||

|
||||
**Hotswap PCB**
|
||||
|
||||
A 65% keyboard sold by Mykeyclub.
|
||||
|
||||
* Keyboard Maintainer: [The QMK Community](https://github.com/qmk)
|
||||
* Hardware Supported: JRIS65 R1 hotswap.
|
||||
* Hardware Availability: intermitently via group buys from [Mykeyclub](https://www.mykeyclub.com/)
|
||||
|
||||
Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
make mykeyclub/jris65/hotswap:default
|
||||
|
||||
Flashing example for this keyboard:
|
||||
|
||||
make mykeyclub/jris65/hotswap: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:
|
||||
|
||||
* **Keycode in layout**: Using the default firmware, assign a key to Reset (`QK_BOOT`) and press the assigned key.
|
||||
* **Physical reset button**: Briefly press the button on the back of the PCB
|
||||
|
||||
The QMK default keymap has FN+Backspace assigned to `QK_BOOT` so you can use that key sequence for subsequent flashing.
|
||||
|
||||
## Disclaimer
|
||||
|
||||
In May 2024 Mykeyclub was contacted to see if they had interest in contributing firmware to the QMK project they did not. This code is thus community supported.
|
||||
|
||||
This firmware has only been tested with JRIS65 R1 hotswap and is likely to work with R2 hotswap. The soldered variant of this PCB requires testing, with actual hardware, before being added.
|
||||
@@ -0,0 +1,5 @@
|
||||
# Mykeyclub
|
||||
|
||||
Mykeyclub is a retailer of mechanical keyboards and related products. They also facilitate the design and manufacture of keyboard products.
|
||||
|
||||
**Website:** https://www.mykeyclub.com/
|
||||
@@ -43,6 +43,10 @@ bool rgb_matrix_indicators_advanced_user(uint8_t led_min, uint8_t led_max) {
|
||||
for (uint8_t i = 50; i <= 55; i++) {
|
||||
rgb_matrix_set_color(i, 255, 86, 0);
|
||||
}
|
||||
} else if ((rgb_matrix_get_mode() == RGB_MATRIX_TYPING_HEATMAP) || (rgb_matrix_get_mode() == RGB_MATRIX_DIGITAL_RAIN)) {
|
||||
for (uint8_t i = 50; i <= 55; i++) {
|
||||
rgb_matrix_set_color(i, 0, 0, 0);
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -43,6 +43,10 @@ bool rgb_matrix_indicators_advanced_user(uint8_t led_min, uint8_t led_max) {
|
||||
for (uint8_t i = 50; i <= 55; i++) {
|
||||
rgb_matrix_set_color(i, 255, 86, 0);
|
||||
}
|
||||
} else if ((rgb_matrix_get_mode() == RGB_MATRIX_TYPING_HEATMAP) || (rgb_matrix_get_mode() == RGB_MATRIX_DIGITAL_RAIN)) {
|
||||
for (uint8_t i = 50; i <= 55; i++) {
|
||||
rgb_matrix_set_color(i, 0, 0, 0);
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
/* Copyright 2023 Gondolindrim <gondolindrim@acheronproject.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"
|
||||
|
||||
bool led_update_kb(led_t led_state) {
|
||||
if (!led_update_user(led_state)) {
|
||||
return false;
|
||||
}
|
||||
(led_state.caps_lock && is_backlight_enabled()) ? backlight_set(get_backlight_level()) : backlight_set(0);
|
||||
return true;
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
// Copyright 2022 beekeeb
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#pragma once
|
||||
|
||||
|
||||
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET
|
||||
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_TIMEOUT 1000U
|
||||
|
||||
#define SERIAL_USART_FULL_DUPLEX
|
||||
#define SERIAL_USART_TX_PIN GP0
|
||||
#define SERIAL_USART_RX_PIN GP1
|
||||
@@ -0,0 +1,98 @@
|
||||
{
|
||||
"manufacturer": "azhizhinov",
|
||||
"keyboard_name": "PIANTORUV44",
|
||||
"maintainer": "azhizhinov",
|
||||
"bootloader": "rp2040",
|
||||
"bootmagic": {
|
||||
"matrix": [0, 5]
|
||||
},
|
||||
"features": {
|
||||
"bootmagic": true,
|
||||
"command": false,
|
||||
"console": false,
|
||||
"extrakey": true,
|
||||
"mousekey": true,
|
||||
"nkro": true
|
||||
},
|
||||
"matrix_pins": {
|
||||
"direct": [
|
||||
["GP5", "GP4", "GP11", "GP15", "GP3", "GP2"],
|
||||
["GP22", "GP20", "GP10", "GP14", "GP9", "GP8"],
|
||||
["GP21", "GP19", "GP6", "GP7", "GP13", "GP12"],
|
||||
["GP17", "GP18", "GP16", "GP26", null, null]
|
||||
]
|
||||
},
|
||||
"processor": "RP2040",
|
||||
"split": {
|
||||
"enabled": true,
|
||||
"matrix_pins": {
|
||||
"right": {
|
||||
"direct": [
|
||||
["GP2", "GP3", "GP15", "GP11", "GP4", "GP5"],
|
||||
["GP8", "GP9", "GP14", "GP10", "GP20", "GP22"],
|
||||
["GP12", "GP13", "GP7", "GP6", "GP19", "GP21"],
|
||||
["GP26", "GP16", "GP18", "GP17", null, null]
|
||||
]
|
||||
}
|
||||
},
|
||||
"serial": {
|
||||
"driver": "vendor"
|
||||
}
|
||||
},
|
||||
"url": "https://github.com/azhizhinov/PIANTORUV44",
|
||||
"usb": {
|
||||
"device_version": "1.0.0",
|
||||
"pid": "0x0004",
|
||||
"vid": "0x415A"
|
||||
},
|
||||
"layouts": {
|
||||
"LAYOUT": {
|
||||
"layout": [
|
||||
{"matrix": [0, 0], "x": 0, "y": 0.25},
|
||||
{"matrix": [0, 1], "x": 1, "y": 0.25},
|
||||
{"matrix": [0, 2], "x": 2, "y": 0.125},
|
||||
{"matrix": [0, 3], "x": 3, "y": 0},
|
||||
{"matrix": [0, 4], "x": 4, "y": 0.125},
|
||||
{"matrix": [0, 5], "x": 5, "y": 0.25},
|
||||
{"matrix": [4, 0], "x": 8, "y": 0.25},
|
||||
{"matrix": [4, 1], "x": 9, "y": 0.125},
|
||||
{"matrix": [4, 2], "x": 10, "y": 0},
|
||||
{"matrix": [4, 3], "x": 11, "y": 0.125},
|
||||
{"matrix": [4, 4], "x": 12, "y": 0.25},
|
||||
{"matrix": [4, 5], "x": 13, "y": 0.25},
|
||||
{"matrix": [1, 0], "x": 0, "y": 1.25},
|
||||
{"matrix": [1, 1], "x": 1, "y": 1.25},
|
||||
{"matrix": [1, 2], "x": 2, "y": 1.125},
|
||||
{"matrix": [1, 3], "x": 3, "y": 1},
|
||||
{"matrix": [1, 4], "x": 4, "y": 1.125},
|
||||
{"matrix": [1, 5], "x": 5, "y": 1.25},
|
||||
{"matrix": [5, 0], "x": 8, "y": 1.25},
|
||||
{"matrix": [5, 1], "x": 9, "y": 1.125},
|
||||
{"matrix": [5, 2], "x": 10, "y": 1},
|
||||
{"matrix": [5, 3], "x": 11, "y": 1.125},
|
||||
{"matrix": [5, 4], "x": 12, "y": 1.25},
|
||||
{"matrix": [5, 5], "x": 13, "y": 1.25},
|
||||
{"matrix": [2, 0], "x": 0, "y": 2.25},
|
||||
{"matrix": [2, 1], "x": 1, "y": 2.25},
|
||||
{"matrix": [2, 2], "x": 2, "y": 2.125},
|
||||
{"matrix": [2, 3], "x": 3, "y": 2},
|
||||
{"matrix": [2, 4], "x": 4, "y": 2.125},
|
||||
{"matrix": [2, 5], "x": 5, "y": 2.25},
|
||||
{"matrix": [6, 0], "x": 8, "y": 2.25},
|
||||
{"matrix": [6, 1], "x": 9, "y": 2.125},
|
||||
{"matrix": [6, 2], "x": 10, "y": 2},
|
||||
{"matrix": [6, 3], "x": 11, "y": 2.125},
|
||||
{"matrix": [6, 4], "x": 12, "y": 2.25},
|
||||
{"matrix": [6, 5], "x": 13, "y": 2.25},
|
||||
{"matrix": [3, 0], "x": 2.5, "y": 3},
|
||||
{"matrix": [3, 1], "x": 3.5, "y": 3.25},
|
||||
{"matrix": [3, 2], "x": 4.5, "y": 3.5},
|
||||
{"matrix": [3, 3], "x": 5.5, "y": 3.75},
|
||||
{"matrix": [7, 0], "x": 7.5, "y": 3.75},
|
||||
{"matrix": [7, 1], "x": 8.5, "y": 3.5},
|
||||
{"matrix": [7, 2], "x": 9.5, "y": 3.25},
|
||||
{"matrix": [7, 3], "x": 10.5, "y": 3}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
// Copyright 2021 azhizhinov (@azhizhinov)
|
||||
// SPDX-License-Identifier: GPL-2.0-or-late
|
||||
#include QMK_KEYBOARD_H
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
[0] = LAYOUT(
|
||||
KC_GRV, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC,
|
||||
KC_ESC, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
|
||||
KC_TAB, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RBRC,
|
||||
KC_LALT, KC_LSFT, MO(1), KC_BSPC, KC_ENT, MO(2), KC_SPC, RCTL(KC_BSPC)
|
||||
),
|
||||
[1] = LAYOUT(
|
||||
KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC,
|
||||
KC_LCTL, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_LEFT, KC_UP, KC_RGHT, KC_NO, KC_HOME, KC_NO,
|
||||
KC_LSFT, KC_CAPS, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_DOWN, KC_NO, KC_NO, KC_END, KC_RALT,
|
||||
KC_LALT, KC_LGUI, KC_TRNS, KC_ESC, KC_ENT, MO(3), KC_SPC, RCTL(KC_BSPC)
|
||||
),
|
||||
[2] = LAYOUT(
|
||||
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_LCTL, KC_BSPC, KC_C, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO,
|
||||
KC_LSFT, KC_X, KC_V, KC_S, KC_L, KC_NO, KC_UNDS, KC_PLUS, KC_PMNS, KC_NO, KC_NO, KC_RALT,
|
||||
KC_LALT, KC_LGUI, MO(3), KC_ESC, KC_ENT, KC_TRNS, KC_SPC, RCTL(KC_BSPC)
|
||||
),
|
||||
[3] = LAYOUT(
|
||||
KC_TAB, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC,
|
||||
KC_LCTL, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_BSLS, KC_GRV,
|
||||
KC_LSFT, KC_CAPS, KC_NO, KC_NO, KC_NO, KC_NO, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, KC_PIPE, KC_RALT,
|
||||
KC_LALT, KC_LGUI, KC_TRNS, KC_ESC, KC_ENT, KC_TRNS, KC_SPC, RCTL(KC_BSPC)
|
||||
)
|
||||
};
|
||||
@@ -0,0 +1,27 @@
|
||||
# Piantor UV 44
|
||||
|
||||

|
||||
|
||||
PiantorUV44 is a Piantor/Cantor fork with Raspberry Pi Pico, hybrid hotswap socket and soldered-in switches support and flippable PCB.
|
||||
|
||||
* Keyboard Maintainer: [azhizhinov](https://github.com/azhizhinov)
|
||||
* Hardware Supported: RP2040
|
||||
* Hardware Availability: https://github.com/azhizhinov/PIANTORUV44
|
||||
|
||||
Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
make piantoruv44:default
|
||||
|
||||
Flashing example for this keyboard:
|
||||
|
||||
make piantoruv44: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 2 ways:
|
||||
|
||||
* **Physical reset button**: Hold the `BOOT` button on the Pico and press the `RST` button on the Pico, release the the `RST` button before the `BOOT` button.
|
||||
* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available
|
||||
Once you enter the bootloader, the keyboard will show up as a USB device on your computer, you could drag and drop a firmware file to flash it, but I recommend using the flash commands for the respective side.
|
||||
@@ -0,0 +1,171 @@
|
||||
/* Copyright 2022 Alexander (Sasha) Karmanov
|
||||
*
|
||||
* 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
|
||||
|
||||
// Defines names for use in layer keycodes and the keymap
|
||||
enum layer_names {
|
||||
_QWERTY,
|
||||
_CURSORLEFT,
|
||||
_CURSORRGHT,
|
||||
_NUMBERS,
|
||||
_EXTRARIGHT
|
||||
};
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
|
||||
/* Qwerty
|
||||
* ,-----------------------------------------+ +-----------------------------------------.
|
||||
* | Esc | Q | W | E | R | T | | Y | U | I | O | P |BSpc |
|
||||
* |------+------+------+------+------+------+ +------+------+------+------+------+------|
|
||||
* | Tab | A | S | D | F | G | | H | J | K | L | ; |Enter |
|
||||
Hold:
|
||||
Extra-Rt
|
||||
* |------+------+------+------+------+------| |------+------+------+------+------+------|
|
||||
* | Ctrl | Z | X | C | V | B | | N | M | , | . | / |RCtrl |
|
||||
* +------+------+------+------+------+------+ +------+------+------+------+------+------+
|
||||
. | GUI | Alt | | | | | | RAlt | Menu | .
|
||||
| +------+------+ | | | | +------+------+ |
|
||||
Hold: | | LSft |CursLt| |CursRt| RSft | |
|
||||
Single hit: | | |Space | |Space | | |
|
||||
| +------+------| |------+------+ |
|
||||
+------------------------------> SPACE SPACE <-----------------------------+
|
||||
|
||||
*/
|
||||
[_QWERTY] = LAYOUT(
|
||||
KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,
|
||||
LT(_EXTRARIGHT,KC_TAB), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_PENT,
|
||||
KC_LCTL, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RCTL,
|
||||
KC_SPC, KC_LGUI, KC_LALT, KC_LSFT, LT(_CURSORLEFT,KC_SPC), LT(_CURSORRGHT ,KC_SPC), KC_RSFT, KC_RALT, KC_APP, KC_SPC
|
||||
),
|
||||
|
||||
|
||||
/*
|
||||
|
||||
Layers below are used on top of QWERTY layer defined above.
|
||||
(Except the PLOVER/STENO layers.)
|
||||
+-------+
|
||||
The keys which are shown empty, like this: | |, represent a transparent key,
|
||||
+-------+
|
||||
meaning the key from the underlaying layer (i.e. QWERTY) will be used.
|
||||
In the keymaps those keys are defined as "_______".
|
||||
|
||||
+-------+ +-------+
|
||||
The keys which are shown solid, like this: | XXXXX | or this | ... |, represent an opaque/blocking key?
|
||||
+-------+ +-------+
|
||||
Such key is not doing anything in that layer nor allowing the key from the underlaying layer
|
||||
to be invoked.
|
||||
In the keymaps those keys are defined as "XXXXXXX".
|
||||
|
||||
Most of the modifiers are the same in all layers.
|
||||
So in most layers they are defined as transparent keys,
|
||||
letting the keys from QWERTY layer to do the work.
|
||||
|
||||
With that idea all the layers below leave the unmodified keys as transparent keys.
|
||||
In the same time - the layers block the keys that have no sense to be used
|
||||
in that given layer. For instance in the cursor control layers
|
||||
some of the keys are not used in the layer, but they are blocked to avoid
|
||||
alpha-keys from QWERTY layer to appear.
|
||||
|
||||
For the same reason the keymaps below are shown simplified,
|
||||
without separate thumbcluster.
|
||||
|
||||
*/
|
||||
|
||||
|
||||
|
||||
/* Cursor Control on the right (Right Space)
|
||||
* ,-----------------------------------------------------------------------------------.
|
||||
* | Esc |Break |WheelD|MousUp|WheelU| Del | Ins | Home | Up | End | ` | Del |
|
||||
* |------+------+------+------+------+-------------+------+------+------+------+------|
|
||||
* | |SelAll|MousLt|MousDn|MousRt| ... | PgUp | Left | Down |Right | ... | |
|
||||
* |------+------+------+------+------+------|------+------+------+------+------+------|
|
||||
* | | Undo | Cut | Copy | Paste| ... | PgDn |MsBtLe|MsBtMi|MsBtRt| ... | |
|
||||
* `------+------+------+------+------+------+------+------+------+------+------+------.
|
||||
* | | | | | X | | | |
|
||||
* `-------------------------------------------------------'
|
||||
*/
|
||||
[_CURSORRGHT] = LAYOUT(
|
||||
_______, KC_BRK, KC_WH_D, KC_MS_U, KC_WH_U, KC_DEL, KC_PGUP, KC_HOME, KC_UP, KC_END, KC_GRV, KC_DEL,
|
||||
KC_ENT, LCTL(KC_A), KC_MS_L, KC_MS_D, KC_MS_R, XXXXXXX, KC_PGDN, KC_LEFT, KC_DOWN, KC_RGHT, XXXXXXX, _______,
|
||||
_______, LCTL(KC_Z), LSFT(KC_DEL), LCTL(KC_INS), LSFT(KC_INS), XXXXXXX, KC_INS, KC_BTN1, KC_BTN3, KC_BTN2, XXXXXXX, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______
|
||||
),
|
||||
|
||||
|
||||
|
||||
/* Cursor Control on the left (Left Space)
|
||||
* ,-----------------------------------------------------------------------------------.
|
||||
* | |Break | Home | Up | End | Ins | Del |WheelU|MousUp|WheelD| ` | Del |
|
||||
* |------+------+------+------+------+------+-------------+------+------+------+------|
|
||||
* | Enter|SelAll|Right | Down | Left | PgUp | xxx |MousLt|MousDn|MousRt| xxx |Enter |
|
||||
* |------+------+------+------+------+------+------|------+------+------+------+------|
|
||||
* | | xxx |MsBtRt|MsBtMi|MsBtLe| PgDn | xxx | Cut | Copy | Paste| xxx | |
|
||||
* `------+------+------+------+------+------+------+------+------+------+------+------.
|
||||
* | | | | X | | | | |
|
||||
* `-------------------------------------------------------'
|
||||
*/
|
||||
[_CURSORLEFT] = LAYOUT(
|
||||
_______, KC_BRK, KC_HOME, KC_UP, KC_END, KC_PGUP, KC_DEL, KC_WH_U, KC_MS_U, KC_WH_D, KC_GRV, KC_DEL,
|
||||
KC_ENT, LCTL(KC_A), KC_LEFT, KC_DOWN, KC_RGHT, KC_PGDN, XXXXXXX, KC_MS_L, KC_MS_D, KC_MS_R, XXXXXXX, _______,
|
||||
_______, XXXXXXX, KC_BTN2, KC_BTN3, KC_BTN1, KC_INS, XXXXXXX, LCTL(KC_DEL), LCTL(KC_INS), LSFT(KC_INS), XXXXXXX, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______
|
||||
),
|
||||
|
||||
|
||||
/* Numbers on the home row, FNs on the top row, symbols in the second row
|
||||
* (Lower or Raise)
|
||||
* ,-----------------------------------------------------------------------------------.
|
||||
* | | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 |BackSp|
|
||||
* |------+------+------+------+------+------|------+------+------+------+------+------|
|
||||
* | | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10| Enter|
|
||||
* |------+------+------+------+------+-------------+------+------+------+------+------|
|
||||
* | | F11 | F12 | LAlt |LShift| LAlt | RAlt |RShift| , | . | / | |
|
||||
* `------+------+------+------+------+------+------+------+------+------+------+------.
|
||||
* | | | | | | | | |
|
||||
* `-------------------------------------------------------'
|
||||
*/
|
||||
[_NUMBERS] = LAYOUT(
|
||||
_______, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC,
|
||||
LT(_EXTRARIGHT,KC_TAB), 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_LALT, KC_LSFT, KC_LALT, KC_RALT, KC_RSFT, KC_COMM, KC_DOT, KC_SLSH, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______
|
||||
),
|
||||
|
||||
/* ExtraRightSide (the keys from the right side which did not fit into the matrix)
|
||||
* ,-----------------------------------------------------------------------------------.
|
||||
* | Esc |BREAK |PLOVR2|PLOVER|TxBOLT|TxBlt2| ` | = | ( | ) | - | |
|
||||
* |------+------+------+------+------+-------------+------+------+------+------+------|
|
||||
* |******| | | | | |PrtScr| | | | ' | |
|
||||
This is the
|
||||
key turning
|
||||
this layer on
|
||||
* |------+------+------+------+------+------|------+------+------+------+------+------|
|
||||
* | | | |NumPad|Qwerty| | | | [ | ] | \ | |
|
||||
* `------+------+------+------+------+------+------+------+------+------+------+------.
|
||||
* | | | | | | | | |
|
||||
* `-------------------------------------------------------'
|
||||
*/
|
||||
[_EXTRARIGHT] = LAYOUT(
|
||||
_______, KC_BRK, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_GRV, KC_EQL, KC_LPRN, KC_RPRN, KC_MINS, _______,
|
||||
_______, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_PSCR, XXXXXXX, XXXXXXX, XXXXXXX, KC_QUOT, _______,
|
||||
_______, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_LBRC, KC_RBRC, KC_BSLS, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______
|
||||
)
|
||||
};
|
||||
|
||||
layer_state_t layer_state_set_user(layer_state_t state) {
|
||||
return update_tri_layer_state(state, _CURSORLEFT, _CURSORRGHT, _NUMBERS);
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
/*
|
||||
Copyright 2024 Alexander (Sasha) Karmanov (ak66666)
|
||||
|
||||
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
|
||||
|
||||
|
||||
//Cirque ProGlide Touchpad configuration
|
||||
#define POINTING_DEVICE_ROTATION_90
|
||||
#define CIRQUE_PINNACLE_TAP_ENABLE
|
||||
#define CIRQUE_PINNACLE_SECONDARY_TAP_ENABLE
|
||||
#define POINTING_DEVICE_GESTURES_SCROLL_ENABLE
|
||||
|
||||
#define CIRQUE_PINNACLE_POSITION_MODE CIRQUE_PINNACLE_ABSOLUTE_MODE
|
||||
@@ -0,0 +1,77 @@
|
||||
{
|
||||
"manufacturer": "Alexander (Sasha) Karmanov",
|
||||
"keyboard_name": "ThumbsUp! v9",
|
||||
"maintainer": "u/ak66666",
|
||||
"development_board": "promicro",
|
||||
"diode_direction": "COL2ROW",
|
||||
"features": {
|
||||
"bootmagic": true,
|
||||
"extrakey": true,
|
||||
"mousekey": true,
|
||||
"pointing_device": true
|
||||
},
|
||||
"dynamic_keymap": {
|
||||
"layer_count": 6
|
||||
},
|
||||
"matrix_pins": {
|
||||
"cols": ["B2", "B6", "B5", "B4", "E6", "D7", "B3", "F4", "F5", "F6", "F7", "B1"],
|
||||
"rows": ["D3", "D2", "D4", "C6"]
|
||||
},
|
||||
"usb": {
|
||||
"device_version": "1.0.0",
|
||||
"pid": "0x0090",
|
||||
"vid": "0x5361"
|
||||
},
|
||||
"layouts": {
|
||||
"LAYOUT": {
|
||||
"layout": [
|
||||
{"label": "ESC", "matrix": [0, 0], "x": 0, "y": 0},
|
||||
{"label": "Q", "matrix": [0, 1], "x": 1, "y": 0},
|
||||
{"label": "W", "matrix": [0, 2], "x": 2, "y": 0},
|
||||
{"label": "E", "matrix": [0, 3], "x": 3, "y": 0},
|
||||
{"label": "R", "matrix": [0, 4], "x": 4, "y": 0},
|
||||
{"label": "T", "matrix": [0, 5], "x": 5, "y": 0},
|
||||
{"label": "Y", "matrix": [0, 6], "x": 6, "y": 0},
|
||||
{"label": "U", "matrix": [0, 7], "x": 7, "y": 0},
|
||||
{"label": "I", "matrix": [0, 8], "x": 8, "y": 0},
|
||||
{"label": "O", "matrix": [0, 9], "x": 9, "y": 0},
|
||||
{"label": "P", "matrix": [0, 10], "x": 10, "y": 0},
|
||||
{"label": "BKSPC", "matrix": [0, 11], "x": 11, "y": 0},
|
||||
{"label": "TAB", "matrix": [1, 0], "x": 0, "y": 1},
|
||||
{"label": "A", "matrix": [1, 1], "x": 1, "y": 1},
|
||||
{"label": "S", "matrix": [1, 2], "x": 2, "y": 1},
|
||||
{"label": "D", "matrix": [1, 3], "x": 3, "y": 1},
|
||||
{"label": "F", "matrix": [1, 4], "x": 4, "y": 1},
|
||||
{"label": "G", "matrix": [1, 5], "x": 5, "y": 1},
|
||||
{"label": "H", "matrix": [1, 6], "x": 6, "y": 1},
|
||||
{"label": "J", "matrix": [1, 7], "x": 7, "y": 1},
|
||||
{"label": "K", "matrix": [1, 8], "x": 8, "y": 1},
|
||||
{"label": "L", "matrix": [1, 9], "x": 9, "y": 1},
|
||||
{"label": ";", "matrix": [1, 10], "x": 10, "y": 1},
|
||||
{"label": "ENTER", "matrix": [1, 11], "x": 11, "y": 1},
|
||||
{"label": "LCTRL", "matrix": [2, 0], "x": 0, "y": 2},
|
||||
{"label": "Z", "matrix": [2, 1], "x": 1, "y": 2},
|
||||
{"label": "X", "matrix": [2, 2], "x": 2, "y": 2},
|
||||
{"label": "C", "matrix": [2, 3], "x": 3, "y": 2},
|
||||
{"label": "V", "matrix": [2, 4], "x": 4, "y": 2},
|
||||
{"label": "B", "matrix": [2, 5], "x": 5, "y": 2},
|
||||
{"label": "N", "matrix": [2, 6], "x": 6, "y": 2},
|
||||
{"label": "M", "matrix": [2, 7], "x": 7, "y": 2},
|
||||
{"label": ",", "matrix": [2, 8], "x": 8, "y": 2},
|
||||
{"label": ".", "matrix": [2, 9], "x": 9, "y": 2},
|
||||
{"label": "/", "matrix": [2, 10], "x": 10, "y": 2},
|
||||
{"label": "RCTRL", "matrix": [2, 11], "x": 11, "y": 2},
|
||||
{"label": "SPACE", "matrix": [3, 1], "x": 1, "y": 3},
|
||||
{"label": "WIN", "matrix": [3, 2], "x": 2, "y": 3},
|
||||
{"label": "LALT", "matrix": [3, 3], "x": 3, "y": 3},
|
||||
{"label": "LSHIFT", "matrix": [3, 5], "x": 4, "y": 3},
|
||||
{"label": "RAISE", "matrix": [3, 4], "x": 5, "y": 3},
|
||||
{"label": "LOWER", "matrix": [3, 7], "x": 6, "y": 3},
|
||||
{"label": "RSHIFT", "matrix": [3, 6], "x": 7, "y": 3},
|
||||
{"label": "RALT", "matrix": [3, 8], "x": 8, "y": 3},
|
||||
{"label": "MENU", "matrix": [3, 9], "x": 9, "y": 3},
|
||||
{"label": "SPACE", "matrix": [3, 10], "x": 10, "y": 3}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
# ThumbsUp! v9
|
||||
|
||||

|
||||
|
||||
A yet another version of the ThumbsUp! keyboard, a three-level PCB-based keyboard supporting Kailh Choc (1350) switches.
|
||||
This v9 version got 4x12 key layout with 2- or 3-key thumbcluster and an optional touchpad.
|
||||
|
||||
|
||||
* Keyboard Maintainer: [Alexander (Sasha) Karmanov](https://github.com/ak66666)
|
||||
* Hardware Supported: AtMega32u4 ProMicro-compatibles
|
||||
* Hardware Availability: https://www.etsy.com/ca/listing/1641077896/thumbsup-v9-ergonomic-mechanical
|
||||
|
||||
Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
make thumbsup/rev9_promicro_4x12:default
|
||||
|
||||
Flashing example for this keyboard:
|
||||
|
||||
make thumbsup/rev9_promicro_4x12: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:
|
||||
|
||||
* **Physical reset button**: Press twice the button on the bottom side of the middle PCB.
|
||||
@@ -0,0 +1 @@
|
||||
POINTING_DEVICE_DRIVER = cirque_pinnacle_i2c
|
||||
@@ -404,7 +404,7 @@ void keyboard_post_init_kb(void) {
|
||||
is_launching = true;
|
||||
defer_exec(500, startup_exec, NULL);
|
||||
#endif
|
||||
matrix_init_user();
|
||||
keyboard_post_init_user();
|
||||
}
|
||||
|
||||
void eeconfig_init_kb(void) { // EEPROM is getting reset!
|
||||
|
||||
@@ -102,6 +102,8 @@ __attribute__((weak)) uint16_t combo_count(void) {
|
||||
return combo_count_raw();
|
||||
}
|
||||
|
||||
_Static_assert(ARRAY_SIZE(key_combos) <= (QK_KB), "Number of combos is abnormally high. Are you using SAFE_RANGE in an enum for combos?");
|
||||
|
||||
combo_t* combo_get_raw(uint16_t combo_idx) {
|
||||
if (combo_idx >= combo_count_raw()) {
|
||||
return NULL;
|
||||
@@ -127,6 +129,8 @@ __attribute__((weak)) uint16_t tap_dance_count(void) {
|
||||
return tap_dance_count_raw();
|
||||
}
|
||||
|
||||
_Static_assert(ARRAY_SIZE(tap_dance_actions) <= (QK_TAP_DANCE_MAX - QK_TAP_DANCE), "Number of tap dance actions exceeds maximum. Are you using SAFE_RANGE in tap dance enum?");
|
||||
|
||||
tap_dance_action_t* tap_dance_get_raw(uint16_t tap_dance_idx) {
|
||||
if (tap_dance_idx >= tap_dance_count_raw()) {
|
||||
return NULL;
|
||||
@@ -153,6 +157,8 @@ __attribute__((weak)) uint16_t key_override_count(void) {
|
||||
return key_override_count_raw();
|
||||
}
|
||||
|
||||
_Static_assert(ARRAY_SIZE(key_overrides) <= (QK_KB), "Number of key overrides is abnormally high. Are you using SAFE_RANGE in an enum for key overrides?");
|
||||
|
||||
const key_override_t* key_override_get_raw(uint16_t key_override_idx) {
|
||||
if (key_override_idx >= key_override_count_raw()) {
|
||||
return NULL;
|
||||
|
||||
@@ -281,7 +281,7 @@ const USB_Descriptor_HIDReport_Datatype_t PROGMEM SharedReport[] = {
|
||||
HID_RI_LOGICAL_MAXIMUM(16, 0x7FFF),
|
||||
HID_RI_REPORT_COUNT(8, 0x02),
|
||||
HID_RI_REPORT_SIZE(8, 0x10),
|
||||
HID_RI_UNIT(8, 0x33), // Inch, English Linear
|
||||
HID_RI_UNIT(8, 0x13), // Inch, English Linear
|
||||
HID_RI_UNIT_EXPONENT(8, 0x0E), // -2
|
||||
HID_RI_INPUT(8, HID_IOF_DATA | HID_IOF_VARIABLE | HID_IOF_ABSOLUTE),
|
||||
HID_RI_END_COLLECTION(0),
|
||||
|
||||
@@ -659,7 +659,7 @@ const PROGMEM uchar shared_hid_report[] = {
|
||||
0x26, 0xFF, 0x7F, // Logical Maximum (32767)
|
||||
0x95, 0x02, // Report Count (2)
|
||||
0x75, 0x10, // Report Size (16)
|
||||
0x65, 0x33, // Unit (Inch, English Linear)
|
||||
0x65, 0x13, // Unit (Inch, English Linear)
|
||||
0x55, 0x0E, // Unit Exponent (-2)
|
||||
0x81, 0x02, // Input (Data, Variable, Absolute)
|
||||
0xC0, // End Collection
|
||||
|
||||
Reference in New Issue
Block a user