Merge remote-tracking branch 'origin/master' into develop
This commit is contained in:
		
						commit
						31ffc1eeb0
					
				
					 10 changed files with 791 additions and 0 deletions
				
			
		
							
								
								
									
										50
									
								
								keyboards/dztech/dz96/config.h
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										50
									
								
								keyboards/dztech/dz96/config.h
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,50 @@
 | 
			
		|||
/* Copyright 2020 kb-elmo<mail@elmo.space>
 | 
			
		||||
 *
 | 
			
		||||
 * This program is free software: you can redistribute it and/or modify
 | 
			
		||||
 * it under the terms of the GNU General Public License as published by
 | 
			
		||||
 * the Free Software Foundation, either version 2 of the License, or
 | 
			
		||||
 * (at your option) any later version.
 | 
			
		||||
 *
 | 
			
		||||
 * This program is distributed in the hope that it will be useful,
 | 
			
		||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
			
		||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
			
		||||
 * GNU General Public License for more details.
 | 
			
		||||
 *
 | 
			
		||||
 * You should have received a copy of the GNU General Public License
 | 
			
		||||
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#pragma once
 | 
			
		||||
 | 
			
		||||
#include "config_common.h"
 | 
			
		||||
 | 
			
		||||
/* USB Device descriptor parameter */
 | 
			
		||||
#define VENDOR_ID       0x445A
 | 
			
		||||
#define PRODUCT_ID      0xDB96
 | 
			
		||||
#define DEVICE_VER      0x0001
 | 
			
		||||
#define MANUFACTURER    DZTECH
 | 
			
		||||
#define PRODUCT         DZ96
 | 
			
		||||
 | 
			
		||||
/* key matrix size */
 | 
			
		||||
#define MATRIX_ROWS 8
 | 
			
		||||
#define MATRIX_COLS 13
 | 
			
		||||
 | 
			
		||||
/* key matrix pins */
 | 
			
		||||
#define MATRIX_ROW_PINS { B7, B3, E6, F0, D5, D4, D6, C7 }
 | 
			
		||||
#define MATRIX_COL_PINS { C6, F1, F4, F5, F6, F7, D7, B4, B5, D0, D1, D2, D3}
 | 
			
		||||
#define UNUSED_PINS
 | 
			
		||||
 | 
			
		||||
/* COL2ROW or ROW2COL */
 | 
			
		||||
#define DIODE_DIRECTION COL2ROW
 | 
			
		||||
 | 
			
		||||
#define LED_NUM_LOCK_PIN B0
 | 
			
		||||
#define LED_CAPS_LOCK_PIN B2
 | 
			
		||||
#define LED_SCROLL_LOCK_PIN B1
 | 
			
		||||
#define LED_PIN_ON_STATE 0
 | 
			
		||||
 | 
			
		||||
/* number of backlight levels */
 | 
			
		||||
#define BACKLIGHT_PIN B6
 | 
			
		||||
#define BACKLIGHT_LEVELS 5
 | 
			
		||||
 | 
			
		||||
/* Set 0 if debouncing isn't needed */
 | 
			
		||||
#define DEBOUNCE 5
 | 
			
		||||
							
								
								
									
										17
									
								
								keyboards/dztech/dz96/dz96.c
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								keyboards/dztech/dz96/dz96.c
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,17 @@
 | 
			
		|||
/* Copyright 2020 kb-elmo<mail@elmo.space>
 | 
			
		||||
 *
 | 
			
		||||
 * 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 "dz96.h"
 | 
			
		||||
							
								
								
									
										97
									
								
								keyboards/dztech/dz96/dz96.h
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										97
									
								
								keyboards/dztech/dz96/dz96.h
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,97 @@
 | 
			
		|||
/* Copyright 2020 kb-elmo<mail@elmo.space>
 | 
			
		||||
 *
 | 
			
		||||
 * This program is free software: you can redistribute it and/or modify
 | 
			
		||||
 * it under the terms of the GNU General Public License as published by
 | 
			
		||||
 * the Free Software Foundation, either version 2 of the License, or
 | 
			
		||||
 * (at your option) any later version.
 | 
			
		||||
 *
 | 
			
		||||
 * This program is distributed in the hope that it will be useful,
 | 
			
		||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
			
		||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
			
		||||
 * GNU General Public License for more details.
 | 
			
		||||
 *
 | 
			
		||||
 * You should have received a copy of the GNU General Public License
 | 
			
		||||
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
#pragma once
 | 
			
		||||
 | 
			
		||||
#include "quantum.h"
 | 
			
		||||
 | 
			
		||||
//Arrow keys and 1.75u right shift
 | 
			
		||||
#define LAYOUT_default( \
 | 
			
		||||
  K00, K01, K02, K03, K04, K60, K61, K62, K63, K05, K06, K07, K08, K72, K09,    K0A, K0B, K0C, K7C, \
 | 
			
		||||
  K10, K11, K12, K13, K14, K64, K65, K66, K67, K15, K16, K17, K18,      K71,    K19, K1A, K1B, K1C, \
 | 
			
		||||
  K20,    K21, K22, K23, K24, K68, K69, K6A, K6B, K25, K26, K27, K28,   K73,    K29, K2A, K2B, K2C, \
 | 
			
		||||
  K30,     K31, K32, K33, K34, K6C, K75, K76, K77, K35, K36, K37,       K38,    K39, K3A, K3B,      \
 | 
			
		||||
  K40,       K42, K43, K44, K78, K79, K7A, K7B, K45, K46, K47,     K48, K74,    K49, K4A, K4B, K4C, \
 | 
			
		||||
  K50,  K51,  K52,                K59,              K55, K56, K57, K58, K53, K54,    K5A, K5B       \
 | 
			
		||||
) { \
 | 
			
		||||
  { K00,    K01,    K02,  K03,  K04,  K05,  K06,  K07,  K08,  K09,  K0A,  K0B,  K0C   }, \
 | 
			
		||||
  { K10,    K11,    K12,  K13,  K14,  K15,  K16,  K17,  K18,  K19,  K1A,  K1B,  K1C   }, \
 | 
			
		||||
  { K20,    K21,    K22,  K23,  K24,  K25,  K26,  K27,  K28,  K29,  K2A,  K2B,  K2C   }, \
 | 
			
		||||
  { K30,    K31,    K32,  K33,  K34,  K35,  K36,  K37,  K38,  K39,  K3A,  K3B,  KC_NO }, \
 | 
			
		||||
  { K40,    KC_NO,  K42,  K43,  K44,  K45,  K46,  K47,  K48,  K49,  K4A,  K4B,  K4C   }, \
 | 
			
		||||
  { K50,    K51,    K52,  K53,  K54,  K55,  K56,  K57,  K58,  K59,  K5A,  K5B,  KC_NO }, \
 | 
			
		||||
  { K60,    K61,    K62,  K63,  K64,  K65,  K66,  K67,  K68,  K69,  K6A,  K6B,  K6C   }, \
 | 
			
		||||
  { KC_NO,  K71,    K72,  K73,  K74,  K75,  K76,  K77,  K78,  K79,  K7A,  K7B,  K7C   }  \
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Split backspace 1.5u right mods
 | 
			
		||||
#define LAYOUT_split_bs_joined_right( \
 | 
			
		||||
  K00, K01, K02, K03, K04, K60, K61, K62, K63, K05, K06, K07, K08, K72, K09, K0A, K0B, K0C, K7C,  \
 | 
			
		||||
  K10, K11, K12, K13, K14, K64, K65, K66, K67, K15, K16, K17, K18, K70, K71, K19, K1A, K1B, K1C,  \
 | 
			
		||||
  K20,   K21, K22, K23, K24, K68, K69, K6A, K6B, K25, K26, K27, K28,  K73,   K29, K2A, K2B, K2C,  \
 | 
			
		||||
  K30,    K31, K32, K33, K34, K6C, K75, K76, K77, K35, K36, K37,     K38,    K39, K3A, K3B,       \
 | 
			
		||||
  K40,     K42, K43, K44, K78, K79, K7A, K7B, K45, K46, K47,    K48,    K74, K49, K4A, K4B, K4C,  \
 | 
			
		||||
  K50, K51, K52,                K59,                     K55, K57, K58, K53, K54, K5A, K5B        \
 | 
			
		||||
) { \
 | 
			
		||||
  { K00,  K01,    K02,  K03,  K04,  K05,  K06,    K07,  K08,  K09,  K0A,  K0B,  K0C   }, \
 | 
			
		||||
  { K10,  K11,    K12,  K13,  K14,  K15,  K16,    K17,  K18,  K19,  K1A,  K1B,  K1C   }, \
 | 
			
		||||
  { K20,  K21,    K22,  K23,  K24,  K25,  K26,    K27,  K28,  K29,  K2A,  K2B,  K2C   }, \
 | 
			
		||||
  { K30,  K31,    K32,  K33,  K34,  K35,  K36,    K37,  K38,  K39,  K3A,  K3B,  KC_NO }, \
 | 
			
		||||
  { K40,  KC_NO,  K42,  K43,  K44,  K45,  K46,    K47,  K48,  K49,  K4A,  K4B,  K4C   }, \
 | 
			
		||||
  { K50,  K51,    K52,  K53,  K54,  K55,  KC_NO,  K57,  K58,  K59,  K5A,  K5B,  KC_NO }, \
 | 
			
		||||
  { K60,  K61,    K62,  K63,  K64,  K65,  K66,    K67,  K68,  K69,  K6A,  K6B,  K6C   }, \
 | 
			
		||||
  { K70,  K71,    K72,  K73,  K74,  K75,  K76,    K77,  K78,  K79,  K7A,  K7B,  K7C   }, \
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Split numpad (enter, 0), split shifts (right, left), split backspace
 | 
			
		||||
// This layout contains every possible keycode placement
 | 
			
		||||
#define LAYOUT_split_shift_and_bs( \
 | 
			
		||||
  K00, K01, K02, K03, K04, K60, K61, K62, K63, K05, K06, K07, K08, K72, K09,    K0A, K0B, K0C, K7C, \
 | 
			
		||||
  K10, K11, K12, K13, K14, K64, K65, K66, K67, K15, K16, K17, K18, K70, K71,    K19, K1A, K1B, K1C, \
 | 
			
		||||
  K20,    K21, K22, K23, K24, K68, K69, K6A, K6B, K25, K26, K27, K28,   K73,    K29, K2A, K2B, K2C, \
 | 
			
		||||
  K30,     K31, K32, K33, K34, K6C, K75, K76, K77, K35, K36, K37,       K38,    K39, K3A, K3B, K3C, \
 | 
			
		||||
  K40,  K41, K42, K43, K44, K78, K79, K7A, K7B, K45, K46, K47,     K48, K74,    K49, K4A, K4B, K4C, \
 | 
			
		||||
  K50,  K51,  K52,                K59,              K55, K56, K57, K58, K53, K54,    K5A, K5B, K5C  \
 | 
			
		||||
) { \
 | 
			
		||||
  { K00,  K01,  K02,  K03,  K04,  K05,  K06,  K07,  K08,  K09,  K0A,  K0B,  K0C },  \
 | 
			
		||||
  { K10,  K11,  K12,  K13,  K14,  K15,  K16,  K17,  K18,  K19,  K1A,  K1B,  K1C },  \
 | 
			
		||||
  { K20,  K21,  K22,  K23,  K24,  K25,  K26,  K27,  K28,  K29,  K2A,  K2B,  K2C },  \
 | 
			
		||||
  { K30,  K31,  K32,  K33,  K34,  K35,  K36,  K37,  K38,  K39,  K3A,  K3B,  K3C },  \
 | 
			
		||||
  { K40,  K41,  K42,  K43,  K44,  K45,  K46,  K47,  K48,  K49,  K4A,  K4B,  K4C },  \
 | 
			
		||||
  { K50,  K51,  K52,  K53,  K54,  K55,  K56,  K57,  K58,  K59,  K5A,  K5B,  K5C },  \
 | 
			
		||||
  { K60,  K61,  K62,  K63,  K64,  K65,  K66,  K67,  K68,  K69,  K6A,  K6B,  K6C },  \
 | 
			
		||||
  { K70,  K71,  K72,  K73,  K74,  K75,  K76,  K77,  K78,  K79,  K7A,  K7B,  K7C },  \
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ISO Layout
 | 
			
		||||
#define LAYOUT_iso( \
 | 
			
		||||
  K00, K01, K02, K03, K04, K60, K61, K62, K63, K05, K06, K07, K08, K72, K09,    K0A, K0B, K0C, K7C, \
 | 
			
		||||
  K10, K11, K12, K13, K14, K64, K65, K66, K67, K15, K16, K17, K18,      K71,    K19, K1A, K1B, K1C, \
 | 
			
		||||
  K20,    K21, K22, K23, K24, K68, K69, K6A, K6B, K25, K26, K27, K28,           K29, K2A, K2B, K2C, \
 | 
			
		||||
  K30,     K31, K32, K33, K34, K6C, K75, K76, K77, K35, K36, K37, K73,  K38,    K39, K3A, K3B,      \
 | 
			
		||||
  K40,  K41, K42, K43, K44, K78, K79, K7A, K7B, K45, K46, K47,     K48, K74,    K49, K4A, K4B, K4C, \
 | 
			
		||||
  K50,  K51,  K52,                K59,              K55, K56, K57, K58, K53, K54,    K5A, K5B       \
 | 
			
		||||
) { \
 | 
			
		||||
  { K00,    K01,    K02,  K03,  K04,  K05,  K06,  K07,  K08,  K09,  K0A,  K0B,  K0C   }, \
 | 
			
		||||
  { K10,    K11,    K12,  K13,  K14,  K15,  K16,  K17,  K18,  K19,  K1A,  K1B,  K1C   }, \
 | 
			
		||||
  { K20,    K21,    K22,  K23,  K24,  K25,  K26,  K27,  K28,  K29,  K2A,  K2B,  K2C   }, \
 | 
			
		||||
  { K30,    K31,    K32,  K33,  K34,  K35,  K36,  K37,  K38,  K39,  K3A,  K3B,  KC_NO }, \
 | 
			
		||||
  { K40,    K41,    K42,  K43,  K44,  K45,  K46,  K47,  K48,  K49,  K4A,  K4B,  K4C   }, \
 | 
			
		||||
  { K50,    K51,    K52,  K53,  K54,  K55,  K56,  K57,  K58,  K59,  K5A,  K5B,  KC_NO }, \
 | 
			
		||||
  { K60,    K61,    K62,  K63,  K64,  K65,  K66,  K67,  K68,  K69,  K6A,  K6B,  K6C   }, \
 | 
			
		||||
  { KC_NO,  K71,    K72,  K73,  K74,  K75,  K76,  K77,  K78,  K79,  K7A,  K7B,  K7C   }  \
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										454
									
								
								keyboards/dztech/dz96/info.json
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										454
									
								
								keyboards/dztech/dz96/info.json
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,454 @@
 | 
			
		|||
{
 | 
			
		||||
  "keyboard_name": "DZ96",
 | 
			
		||||
  "keyboard_folder": "dztech/dz96",
 | 
			
		||||
  "url": "",
 | 
			
		||||
  "maintainer": "kb-elmo",
 | 
			
		||||
  "width": 19,
 | 
			
		||||
  "height": 6,
 | 
			
		||||
  "layouts": {
 | 
			
		||||
    "LAYOUT_default": {
 | 
			
		||||
      "layout": [
 | 
			
		||||
        {"label":"ESC", "x":0, "y":0},
 | 
			
		||||
        {"label":"F1", "x":1, "y":0},
 | 
			
		||||
        {"label":"F2", "x":2, "y":0},
 | 
			
		||||
        {"label":"F3", "x":3, "y":0},
 | 
			
		||||
        {"label":"F4", "x":4, "y":0},
 | 
			
		||||
        {"label":"F5", "x":5, "y":0},
 | 
			
		||||
        {"label":"F6", "x":6, "y":0},
 | 
			
		||||
        {"label":"F7", "x":7, "y":0},
 | 
			
		||||
        {"label":"F8", "x":8, "y":0},
 | 
			
		||||
        {"label":"F9", "x":9, "y":0},
 | 
			
		||||
        {"label":"F10", "x":10, "y":0},
 | 
			
		||||
        {"label":"F11", "x":11, "y":0},
 | 
			
		||||
        {"label":"F12", "x":12, "y":0},
 | 
			
		||||
        {"label":"PRINT SCREEN", "x":13, "y":0},
 | 
			
		||||
        {"label":"HOME", "x":14, "y":0},
 | 
			
		||||
        {"label":"END", "x":15, "y":0},
 | 
			
		||||
        {"label":"PAGE UP", "x":16, "y":0},
 | 
			
		||||
        {"label":"PAGE DOWN", "x":17, "y":0},
 | 
			
		||||
        {"label":"DELETE", "x":18, "y":0},
 | 
			
		||||
 | 
			
		||||
        {"label":"GRAVE", "x":0, "y":1},
 | 
			
		||||
        {"label":"1", "x":1, "y":1},
 | 
			
		||||
        {"label":"2", "x":2, "y":1},
 | 
			
		||||
        {"label":"3", "x":3, "y":1},
 | 
			
		||||
        {"label":"4", "x":4, "y":1},
 | 
			
		||||
        {"label":"5", "x":5, "y":1},
 | 
			
		||||
        {"label":"6", "x":6, "y":1},
 | 
			
		||||
        {"label":"7", "x":7, "y":1},
 | 
			
		||||
        {"label":"8", "x":8, "y":1},
 | 
			
		||||
        {"label":"9", "x":9, "y":1},
 | 
			
		||||
        {"label":"0", "x":10, "y":1},
 | 
			
		||||
        {"label":"MINUS", "x":11, "y":1},
 | 
			
		||||
        {"label":"EQUAL", "x":12, "y":1},
 | 
			
		||||
        {"label":"BACKSPACE", "x":13, "y":1, "w":2},
 | 
			
		||||
        {"label":"NUM LOCK", "x":15, "y":1},
 | 
			
		||||
        {"label":"KEYPAD /", "x":16, "y":1},
 | 
			
		||||
        {"label":"KEYPAD *", "x":17, "y":1},
 | 
			
		||||
        {"label":"KEYPAD -", "x":18, "y":1},
 | 
			
		||||
 | 
			
		||||
        {"label":"TAB", "x":0, "y":2, "w":1.5},
 | 
			
		||||
        {"label":"Q", "x":1.5, "y":2},
 | 
			
		||||
        {"label":"W", "x":2.5, "y":2},
 | 
			
		||||
        {"label":"E", "x":3.5, "y":2},
 | 
			
		||||
        {"label":"R", "x":4.5, "y":2},
 | 
			
		||||
        {"label":"T", "x":5.5, "y":2},
 | 
			
		||||
        {"label":"Y", "x":6.5, "y":2},
 | 
			
		||||
        {"label":"U", "x":7.5, "y":2},
 | 
			
		||||
        {"label":"I", "x":8.5, "y":2},
 | 
			
		||||
        {"label":"O", "x":9.5, "y":2},
 | 
			
		||||
        {"label":"P", "x":10.5, "y":2},
 | 
			
		||||
        {"label":"LBRACKET", "x":11.5, "y":2},
 | 
			
		||||
        {"label":"RBRACKET", "x":12.5, "y":2},
 | 
			
		||||
        {"label":"BACKSLASH", "x":13.5, "y":2, "w":1.5},
 | 
			
		||||
        {"label":"KEYPAD 7", "x":15, "y":2},
 | 
			
		||||
        {"label":"KEYPAD 8", "x":16, "y":2},
 | 
			
		||||
        {"label":"KEYPAD 9", "x":17, "y":2},
 | 
			
		||||
        {"label":"KEYPAD +", "x":18, "y":2, "h":2},
 | 
			
		||||
 | 
			
		||||
        {"label":"CAPS LOCK", "x":0, "y":3, "w":1.75},
 | 
			
		||||
        {"label":"A", "x":1.75, "y":3},
 | 
			
		||||
        {"label":"S", "x":2.75, "y":3},
 | 
			
		||||
        {"label":"D", "x":3.75, "y":3},
 | 
			
		||||
        {"label":"F", "x":4.75, "y":3},
 | 
			
		||||
        {"label":"G", "x":5.75, "y":3},
 | 
			
		||||
        {"label":"H", "x":6.75, "y":3},
 | 
			
		||||
        {"label":"J", "x":7.75, "y":3},
 | 
			
		||||
        {"label":"K", "x":8.75, "y":3},
 | 
			
		||||
        {"label":"L", "x":9.75, "y":3},
 | 
			
		||||
        {"label":"SEMICOLON", "x":10.75, "y":3},
 | 
			
		||||
        {"label":"QUOTE", "x":11.75, "y":3},
 | 
			
		||||
        {"label":"ENTER", "x":12.75, "y":3, "w":2.25},
 | 
			
		||||
        {"label":"KEYPAD 4", "x":15, "y":3},
 | 
			
		||||
        {"label":"KEYPAD 5", "x":16, "y":3},
 | 
			
		||||
        {"label":"KEYPAD 6", "x":17, "y":3},
 | 
			
		||||
 | 
			
		||||
        {"label":"LSHIFT", "x":0, "y":4, "w":2.25},
 | 
			
		||||
        {"label":"Z", "x":2.25, "y":4},
 | 
			
		||||
        {"label":"X", "x":3.25, "y":4},
 | 
			
		||||
        {"label":"C", "x":4.25, "y":4},
 | 
			
		||||
        {"label":"V", "x":5.25, "y":4},
 | 
			
		||||
        {"label":"B", "x":6.25, "y":4},
 | 
			
		||||
        {"label":"N", "x":7.25, "y":4},
 | 
			
		||||
        {"label":"M", "x":8.25, "y":4},
 | 
			
		||||
        {"label":"COMMA", "x":9.25, "y":4},
 | 
			
		||||
        {"label":"PERIOD", "x":10.25, "y":4},
 | 
			
		||||
        {"label":"SLASH", "x":11.25, "y":4},
 | 
			
		||||
        {"label":"RSHIFT", "x":12.25, "y":4, "w":1.75},
 | 
			
		||||
        {"label":"UP", "x":14, "y":4},
 | 
			
		||||
        {"label":"KEYPAD 1", "x":15, "y":4},
 | 
			
		||||
        {"label":"KEYPAD 2", "x":16, "y":4},
 | 
			
		||||
        {"label":"KEYPAD 3", "x":17, "y":4},
 | 
			
		||||
        {"label":"KEYPAD ENTER", "x":18, "y":4, "h":2},
 | 
			
		||||
 | 
			
		||||
        {"label":"LCTRL", "x":0, "y":5, "w":1.25},
 | 
			
		||||
        {"label":"LGUI", "x":1.25, "y":5, "w":1.25},
 | 
			
		||||
        {"label":"LALT", "x":2.5, "y":5, "w":1.25},
 | 
			
		||||
        {"label":"SPACE", "x":3.75, "y":5, "w":6.25},
 | 
			
		||||
        {"label":"RALT", "x":10, "y":5},
 | 
			
		||||
        {"label":"RCTRL", "x":11, "y":5},
 | 
			
		||||
        {"label":"FN", "x":12, "y":5},
 | 
			
		||||
        {"label":"LEFT", "x":13, "y":5},
 | 
			
		||||
        {"label":"DOWN", "x":14, "y":5},
 | 
			
		||||
        {"label":"RIGHT", "x":15, "y":5},
 | 
			
		||||
        {"label":"KEYPAD 0", "x":16, "y":5},
 | 
			
		||||
        {"label":"KEYPAD .", "x":17, "y":5}
 | 
			
		||||
      ]
 | 
			
		||||
    },
 | 
			
		||||
 | 
			
		||||
    "LAYOUT_split_bs_joined_right": {
 | 
			
		||||
      "layout": [
 | 
			
		||||
        {"label": "K00", "x": 0, "y": 0},
 | 
			
		||||
        {"label": "K01", "x": 1, "y": 0},
 | 
			
		||||
        {"label": "K02", "x": 2, "y": 0},
 | 
			
		||||
        {"label": "K03", "x": 3, "y": 0},
 | 
			
		||||
        {"label": "K04", "x": 4, "y": 0},
 | 
			
		||||
        {"label": "K60", "x": 5, "y": 0},
 | 
			
		||||
        {"label": "K61", "x": 6, "y": 0},
 | 
			
		||||
        {"label": "K62", "x": 7, "y": 0},
 | 
			
		||||
        {"label": "K63", "x": 8, "y": 0},
 | 
			
		||||
        {"label": "K05", "x": 9, "y": 0},
 | 
			
		||||
        {"label": "K06", "x": 10, "y": 0},
 | 
			
		||||
        {"label": "K07", "x": 11, "y": 0},
 | 
			
		||||
        {"label": "K08", "x": 12, "y": 0},
 | 
			
		||||
        {"label": "K72", "x": 13, "y": 0},
 | 
			
		||||
        {"label": "K09", "x": 14, "y": 0},
 | 
			
		||||
        {"label": "K0A", "x": 15, "y": 0},
 | 
			
		||||
        {"label": "K0B", "x": 16, "y": 0},
 | 
			
		||||
        {"label": "K0C", "x": 17, "y": 0},
 | 
			
		||||
        {"label": "K7C", "x": 18, "y": 0},
 | 
			
		||||
 | 
			
		||||
        {"label": "K10", "x": 0, "y": 1},
 | 
			
		||||
        {"label": "K11", "x": 1, "y": 1},
 | 
			
		||||
        {"label": "K12", "x": 2, "y": 1},
 | 
			
		||||
        {"label": "K13", "x": 3, "y": 1},
 | 
			
		||||
        {"label": "K14", "x": 4, "y": 1},
 | 
			
		||||
        {"label": "K64", "x": 5, "y": 1},
 | 
			
		||||
        {"label": "K65", "x": 6, "y": 1},
 | 
			
		||||
        {"label": "K66", "x": 7, "y": 1},
 | 
			
		||||
        {"label": "K67", "x": 8, "y": 1},
 | 
			
		||||
        {"label": "K15", "x": 9, "y": 1},
 | 
			
		||||
        {"label": "K16", "x": 10, "y": 1},
 | 
			
		||||
        {"label": "K17", "x": 11, "y": 1},
 | 
			
		||||
        {"label": "K18", "x": 12, "y": 1},
 | 
			
		||||
        {"label": "K70", "x": 13, "y": 1},
 | 
			
		||||
        {"label": "K71", "x": 14, "y": 1},
 | 
			
		||||
        {"label": "K19", "x": 15, "y": 1},
 | 
			
		||||
        {"label": "K1A", "x": 16, "y": 1},
 | 
			
		||||
        {"label": "K1B", "x": 17, "y": 1},
 | 
			
		||||
        {"label": "K1C", "x": 18, "y": 1},
 | 
			
		||||
 | 
			
		||||
        {"label": "K20", "x": 0, "y": 2, "w": 1.5},
 | 
			
		||||
        {"label": "K21", "x": 1.5, "y": 2},
 | 
			
		||||
        {"label": "K22", "x": 2.5, "y": 2},
 | 
			
		||||
        {"label": "K23", "x": 3.5, "y": 2},
 | 
			
		||||
        {"label": "K24", "x": 4.5, "y": 2},
 | 
			
		||||
        {"label": "K68", "x": 5.5, "y": 2},
 | 
			
		||||
        {"label": "K69", "x": 6.5, "y": 2},
 | 
			
		||||
        {"label": "K6A", "x": 7.5, "y": 2},
 | 
			
		||||
        {"label": "K6B", "x": 8.5, "y": 2},
 | 
			
		||||
        {"label": "K25", "x": 9.5, "y": 2},
 | 
			
		||||
        {"label": "K26", "x": 10.5, "y": 2},
 | 
			
		||||
        {"label": "K27", "x": 11.5, "y": 2},
 | 
			
		||||
        {"label": "K28", "x": 12.5, "y": 2},
 | 
			
		||||
        {"label": "K73", "x": 13.5, "y": 2, "w": 1.5},
 | 
			
		||||
        {"label": "K29", "x": 15, "y": 2},
 | 
			
		||||
        {"label": "K2A", "x": 16, "y": 2},
 | 
			
		||||
        {"label": "K2B", "x": 17, "y": 2},
 | 
			
		||||
        {"label": "K2C", "x": 18, "y": 2, "h": 2},
 | 
			
		||||
 | 
			
		||||
        {"label": "K30", "x": 0, "y": 3, "w": 1.75},
 | 
			
		||||
        {"label": "K31", "x": 1.75, "y": 3},
 | 
			
		||||
        {"label": "K32", "x": 2.75, "y": 3},
 | 
			
		||||
        {"label": "K33", "x": 3.75, "y": 3},
 | 
			
		||||
        {"label": "K34", "x": 4.75, "y": 3},
 | 
			
		||||
        {"label": "K6C", "x": 5.75, "y": 3},
 | 
			
		||||
        {"label": "K75", "x": 6.75, "y": 3},
 | 
			
		||||
        {"label": "K76", "x": 7.75, "y": 3},
 | 
			
		||||
        {"label": "K77", "x": 8.75, "y": 3},
 | 
			
		||||
        {"label": "K35", "x": 9.75, "y": 3},
 | 
			
		||||
        {"label": "K36", "x": 10.75, "y": 3},
 | 
			
		||||
        {"label": "K37", "x": 11.75, "y": 3},
 | 
			
		||||
        {"label": "K38", "x": 12.75, "y": 3, "w": 2.25},
 | 
			
		||||
        {"label": "K39", "x": 15, "y": 3},
 | 
			
		||||
        {"label": "K3A", "x": 16, "y": 3},
 | 
			
		||||
        {"label": "K3B", "x": 17, "y": 3},
 | 
			
		||||
 | 
			
		||||
        {"label": "K40", "x": 0, "y": 4, "w": 2.25},
 | 
			
		||||
        {"label": "K42", "x": 2.25, "y": 4},
 | 
			
		||||
        {"label": "K43", "x": 3.25, "y": 4},
 | 
			
		||||
        {"label": "K44", "x": 4.25, "y": 4},
 | 
			
		||||
        {"label": "K78", "x": 5.25, "y": 4},
 | 
			
		||||
        {"label": "K79", "x": 6.25, "y": 4},
 | 
			
		||||
        {"label": "K7A", "x": 7.25, "y": 4},
 | 
			
		||||
        {"label": "K7B", "x": 8.25, "y": 4},
 | 
			
		||||
        {"label": "K45", "x": 9.25, "y": 4},
 | 
			
		||||
        {"label": "K46", "x": 10.25, "y": 4},
 | 
			
		||||
        {"label": "K47", "x": 11.25, "y": 4},
 | 
			
		||||
        {"label": "K48", "x": 12.25, "y": 4, "w": 1.75},
 | 
			
		||||
        {"label": "K74", "x": 14, "y": 4},
 | 
			
		||||
        {"label": "K49", "x": 15, "y": 4},
 | 
			
		||||
        {"label": "K4A", "x": 16, "y": 4},
 | 
			
		||||
        {"label": "K4B", "x": 17, "y": 4},
 | 
			
		||||
        {"label": "K4C", "x": 18, "y": 4, "h": 2},
 | 
			
		||||
 | 
			
		||||
        {"label": "K50", "x": 0, "y": 5, "w": 1.25},
 | 
			
		||||
        {"label": "K51", "x": 1.25, "y": 5, "w": 1.25},
 | 
			
		||||
        {"label": "K52", "x": 2.5, "y": 5, "w": 1.25},
 | 
			
		||||
        {"label": "K59", "x": 3.75, "y": 5, "w": 6.25},
 | 
			
		||||
        {"label": "K55", "x": 10, "y": 5, "w": 1.5},
 | 
			
		||||
        {"label": "K57", "x": 11.5, "y": 5, "w": 1.5},
 | 
			
		||||
        {"label": "K58", "x": 13, "y": 5},
 | 
			
		||||
        {"label": "K53", "x": 14, "y": 5},
 | 
			
		||||
        {"label": "K54", "x": 15, "y": 5},
 | 
			
		||||
        {"label": "K5A", "x": 16, "y": 5},
 | 
			
		||||
        {"label": "K5B", "x": 17, "y": 5}
 | 
			
		||||
      ]
 | 
			
		||||
    },
 | 
			
		||||
 | 
			
		||||
    "LAYOUT_split_shift_and_bs": {
 | 
			
		||||
      "layout": [
 | 
			
		||||
        {"label":"ESC", "x":0, "y":0},
 | 
			
		||||
        {"label":"F1", "x":1, "y":0},
 | 
			
		||||
        {"label":"F2", "x":2, "y":0},
 | 
			
		||||
        {"label":"F3", "x":3, "y":0},
 | 
			
		||||
        {"label":"F4", "x":4, "y":0},
 | 
			
		||||
        {"label":"F5", "x":5, "y":0},
 | 
			
		||||
        {"label":"F6", "x":6, "y":0},
 | 
			
		||||
        {"label":"F7", "x":7, "y":0},
 | 
			
		||||
        {"label":"F8", "x":8, "y":0},
 | 
			
		||||
        {"label":"F9", "x":9, "y":0},
 | 
			
		||||
        {"label":"F10", "x":10, "y":0},
 | 
			
		||||
        {"label":"F11", "x":11, "y":0},
 | 
			
		||||
        {"label":"F12", "x":12, "y":0},
 | 
			
		||||
        {"label":"PRINT SCREEN", "x":13, "y":0},
 | 
			
		||||
        {"label":"HOME", "x":14, "y":0},
 | 
			
		||||
        {"label":"END", "x":15, "y":0},
 | 
			
		||||
        {"label":"PAGE UP", "x":16, "y":0},
 | 
			
		||||
        {"label":"PAGE DOWN", "x":17, "y":0},
 | 
			
		||||
        {"label":"DELETE", "x":18, "y":0},
 | 
			
		||||
 | 
			
		||||
        {"label":"GRAVE", "x":0, "y":1},
 | 
			
		||||
        {"label":"1", "x":1, "y":1},
 | 
			
		||||
        {"label":"2", "x":2, "y":1},
 | 
			
		||||
        {"label":"3", "x":3, "y":1},
 | 
			
		||||
        {"label":"4", "x":4, "y":1},
 | 
			
		||||
        {"label":"5", "x":5, "y":1},
 | 
			
		||||
        {"label":"6", "x":6, "y":1},
 | 
			
		||||
        {"label":"7", "x":7, "y":1},
 | 
			
		||||
        {"label":"8", "x":8, "y":1},
 | 
			
		||||
        {"label":"9", "x":9, "y":1},
 | 
			
		||||
        {"label":"0", "x":10, "y":1},
 | 
			
		||||
        {"label":"MINUS", "x":11, "y":1},
 | 
			
		||||
        {"label":"EQUAL", "x":12, "y":1},
 | 
			
		||||
        {"label":"BACKSPACE", "x":13, "y":1},
 | 
			
		||||
        {"label":"BACKSPACE", "x":14, "y":1},
 | 
			
		||||
        {"label":"NUM LOCK", "x":15, "y":1},
 | 
			
		||||
        {"label":"KEYPAD /", "x":16, "y":1},
 | 
			
		||||
        {"label":"KEYPAD *", "x":17, "y":1},
 | 
			
		||||
        {"label":"KEYPAD -", "x":18, "y":1},
 | 
			
		||||
 | 
			
		||||
        {"label":"TAB", "x":0, "y":2, "w":1.5},
 | 
			
		||||
        {"label":"Q", "x":1.5, "y":2},
 | 
			
		||||
        {"label":"W", "x":2.5, "y":2},
 | 
			
		||||
        {"label":"E", "x":3.5, "y":2},
 | 
			
		||||
        {"label":"R", "x":4.5, "y":2},
 | 
			
		||||
        {"label":"T", "x":5.5, "y":2},
 | 
			
		||||
        {"label":"Y", "x":6.5, "y":2},
 | 
			
		||||
        {"label":"U", "x":7.5, "y":2},
 | 
			
		||||
        {"label":"I", "x":8.5, "y":2},
 | 
			
		||||
        {"label":"O", "x":9.5, "y":2},
 | 
			
		||||
        {"label":"P", "x":10.5, "y":2},
 | 
			
		||||
        {"label":"LBRACKET", "x":11.5, "y":2},
 | 
			
		||||
        {"label":"RBRACKET", "x":12.5, "y":2},
 | 
			
		||||
        {"label":"BACKSLASH", "x":13.5, "y":2, "w":1.5},
 | 
			
		||||
        {"label":"KEYPAD 7", "x":15, "y":2},
 | 
			
		||||
        {"label":"KEYPAD 8", "x":16, "y":2},
 | 
			
		||||
        {"label":"KEYPAD 9", "x":17, "y":2},
 | 
			
		||||
        {"label":"KEYPAD +", "x":18, "y":2},
 | 
			
		||||
 | 
			
		||||
        {"label":"CAPS LOCK", "x":0, "y":3, "w":1.75},
 | 
			
		||||
        {"label":"A", "x":1.75, "y":3},
 | 
			
		||||
        {"label":"S", "x":2.75, "y":3},
 | 
			
		||||
        {"label":"D", "x":3.75, "y":3},
 | 
			
		||||
        {"label":"F", "x":4.75, "y":3},
 | 
			
		||||
        {"label":"G", "x":5.75, "y":3},
 | 
			
		||||
        {"label":"H", "x":6.75, "y":3},
 | 
			
		||||
        {"label":"J", "x":7.75, "y":3},
 | 
			
		||||
        {"label":"K", "x":8.75, "y":3},
 | 
			
		||||
        {"label":"L", "x":9.75, "y":3},
 | 
			
		||||
        {"label":"SEMICOLON", "x":10.75, "y":3},
 | 
			
		||||
        {"label":"QUOTE", "x":11.75, "y":3},
 | 
			
		||||
        {"label":"ENTER", "x":12.75, "y":3, "w":2.25},
 | 
			
		||||
        {"label":"KEYPAD 4", "x":15, "y":3},
 | 
			
		||||
        {"label":"KEYPAD 5", "x":16, "y":3},
 | 
			
		||||
        {"label":"KEYPAD 6", "x":17, "y":3},
 | 
			
		||||
        {"label":"KEYPAD +", "x":18, "y":3},
 | 
			
		||||
 | 
			
		||||
        {"label":"LSHIFT", "x":0, "y":4, "w":1.25},
 | 
			
		||||
        {"label":"ISO BACKSLASH", "x":1.25, "y":4},
 | 
			
		||||
        {"label":"Z", "x":2.25, "y":4},
 | 
			
		||||
        {"label":"X", "x":3.25, "y":4},
 | 
			
		||||
        {"label":"C", "x":4.25, "y":4},
 | 
			
		||||
        {"label":"V", "x":5.25, "y":4},
 | 
			
		||||
        {"label":"B", "x":6.25, "y":4},
 | 
			
		||||
        {"label":"N", "x":7.25, "y":4},
 | 
			
		||||
        {"label":"M", "x":8.25, "y":4},
 | 
			
		||||
        {"label":"COMMA", "x":9.25, "y":4},
 | 
			
		||||
        {"label":"PERIOD", "x":10.25, "y":4},
 | 
			
		||||
        {"label":"SLASH", "x":11.25, "y":4},
 | 
			
		||||
        {"label":"RSHIFT", "x":12.25, "y":4, "w":1.75},
 | 
			
		||||
        {"label":"UP", "x":14, "y":4},
 | 
			
		||||
        {"label":"KEYPAD 1", "x":15, "y":4},
 | 
			
		||||
        {"label":"KEYPAD 2", "x":16, "y":4},
 | 
			
		||||
        {"label":"KEYPAD 3", "x":17, "y":4},
 | 
			
		||||
        {"label":"KEYPAD ENTER", "x":18, "y":4},
 | 
			
		||||
 | 
			
		||||
        {"label":"LCTRL", "x":0, "y":5, "w":1.25},
 | 
			
		||||
        {"label":"LGUI", "x":1.25, "y":5, "w":1.25},
 | 
			
		||||
        {"label":"LALT", "x":2.5, "y":5, "w":1.25},
 | 
			
		||||
        {"label":"SPACE", "x":3.75, "y":5, "w":6.25},
 | 
			
		||||
        {"label":"RALT", "x":10, "y":5},
 | 
			
		||||
        {"label":"MENU", "x":11, "y":5},
 | 
			
		||||
        {"label":"RCTRL", "x":12, "y":5},
 | 
			
		||||
        {"label":"LEFT", "x":13, "y":5},
 | 
			
		||||
        {"label":"DOWN", "x":14, "y":5},
 | 
			
		||||
        {"label":"RIGHT", "x":15, "y":5},
 | 
			
		||||
        {"label":"KEYPAD 0", "x":16, "y":5},
 | 
			
		||||
        {"label":"KEYPAD .", "x":17, "y":5},
 | 
			
		||||
        {"label":"KEYPAD ENTER", "x":18, "y":5}
 | 
			
		||||
      ]
 | 
			
		||||
    },
 | 
			
		||||
 | 
			
		||||
    "LAYOUT_iso": {
 | 
			
		||||
      "layout": [
 | 
			
		||||
        {"label":"ESC", "x":0, "y":0},
 | 
			
		||||
        {"label":"F1", "x":1, "y":0},
 | 
			
		||||
        {"label":"F2", "x":2, "y":0},
 | 
			
		||||
        {"label":"F3", "x":3, "y":0},
 | 
			
		||||
        {"label":"F4", "x":4, "y":0},
 | 
			
		||||
        {"label":"F5", "x":5, "y":0},
 | 
			
		||||
        {"label":"F6", "x":6, "y":0},
 | 
			
		||||
        {"label":"F7", "x":7, "y":0},
 | 
			
		||||
        {"label":"F8", "x":8, "y":0},
 | 
			
		||||
        {"label":"F9", "x":9, "y":0},
 | 
			
		||||
        {"label":"F10", "x":10, "y":0},
 | 
			
		||||
        {"label":"F11", "x":11, "y":0},
 | 
			
		||||
        {"label":"F12", "x":12, "y":0},
 | 
			
		||||
        {"label":"PRINT SCREEN", "x":13, "y":0},
 | 
			
		||||
        {"label":"HOME", "x":14, "y":0},
 | 
			
		||||
        {"label":"END", "x":15, "y":0},
 | 
			
		||||
        {"label":"PAGE UP", "x":16, "y":0},
 | 
			
		||||
        {"label":"PAGE DOWN", "x":17, "y":0},
 | 
			
		||||
        {"label":"DELETE", "x":18, "y":0},
 | 
			
		||||
 | 
			
		||||
        {"label":"GRAVE", "x":0, "y":1},
 | 
			
		||||
        {"label":"1", "x":1, "y":1},
 | 
			
		||||
        {"label":"2", "x":2, "y":1},
 | 
			
		||||
        {"label":"3", "x":3, "y":1},
 | 
			
		||||
        {"label":"4", "x":4, "y":1},
 | 
			
		||||
        {"label":"5", "x":5, "y":1},
 | 
			
		||||
        {"label":"6", "x":6, "y":1},
 | 
			
		||||
        {"label":"7", "x":7, "y":1},
 | 
			
		||||
        {"label":"8", "x":8, "y":1},
 | 
			
		||||
        {"label":"9", "x":9, "y":1},
 | 
			
		||||
        {"label":"0", "x":10, "y":1},
 | 
			
		||||
        {"label":"MINUS", "x":11, "y":1},
 | 
			
		||||
        {"label":"EQUAL", "x":12, "y":1},
 | 
			
		||||
        {"label":"BACKSPACE", "x":13, "y":1, "w":2},
 | 
			
		||||
        {"label":"NUM LOCK", "x":15, "y":1},
 | 
			
		||||
        {"label":"KEYPAD /", "x":16, "y":1},
 | 
			
		||||
        {"label":"KEYPAD *", "x":17, "y":1},
 | 
			
		||||
        {"label":"KEYPAD -", "x":18, "y":1},
 | 
			
		||||
 | 
			
		||||
        {"label":"TAB", "x":0, "y":2, "w":1.5},
 | 
			
		||||
        {"label":"Q", "x":1.5, "y":2},
 | 
			
		||||
        {"label":"W", "x":2.5, "y":2},
 | 
			
		||||
        {"label":"E", "x":3.5, "y":2},
 | 
			
		||||
        {"label":"R", "x":4.5, "y":2},
 | 
			
		||||
        {"label":"T", "x":5.5, "y":2},
 | 
			
		||||
        {"label":"Y", "x":6.5, "y":2},
 | 
			
		||||
        {"label":"U", "x":7.5, "y":2},
 | 
			
		||||
        {"label":"I", "x":8.5, "y":2},
 | 
			
		||||
        {"label":"O", "x":9.5, "y":2},
 | 
			
		||||
        {"label":"P", "x":10.5, "y":2},
 | 
			
		||||
        {"label":"LBRACKET", "x":11.5, "y":2},
 | 
			
		||||
        {"label":"RBRACKET", "x":12.5, "y":2},
 | 
			
		||||
        {"label":"KEYPAD 7", "x":15, "y":2},
 | 
			
		||||
        {"label":"KEYPAD 8", "x":16, "y":2},
 | 
			
		||||
        {"label":"KEYPAD 9", "x":17, "y":2},
 | 
			
		||||
        {"label":"KEYPAD +", "x":18, "y":2, "h":2},
 | 
			
		||||
 | 
			
		||||
        {"label":"CAPS LOCK", "x":0, "y":3, "w":1.75},
 | 
			
		||||
        {"label":"A", "x":1.75, "y":3},
 | 
			
		||||
        {"label":"S", "x":2.75, "y":3},
 | 
			
		||||
        {"label":"D", "x":3.75, "y":3},
 | 
			
		||||
        {"label":"F", "x":4.75, "y":3},
 | 
			
		||||
        {"label":"G", "x":5.75, "y":3},
 | 
			
		||||
        {"label":"H", "x":6.75, "y":3},
 | 
			
		||||
        {"label":"J", "x":7.75, "y":3},
 | 
			
		||||
        {"label":"K", "x":8.75, "y":3},
 | 
			
		||||
        {"label":"L", "x":9.75, "y":3},
 | 
			
		||||
        {"label":"SEMICOLON", "x":10.75, "y":3},
 | 
			
		||||
        {"label":"QUOTE", "x":11.75, "y":3},
 | 
			
		||||
        {"label":"ISO HASH", "x":12.75, "y":3},
 | 
			
		||||
        {"label":"ENTER", "x":13.75, "y":2, "w":1.25, "h":2},
 | 
			
		||||
        {"label":"KEYPAD 4", "x":15, "y":3},
 | 
			
		||||
        {"label":"KEYPAD 5", "x":16, "y":3},
 | 
			
		||||
        {"label":"KEYPAD 6", "x":17, "y":3},
 | 
			
		||||
 | 
			
		||||
        {"label":"LSHIFT", "x":0, "y":4, "w":1.25},
 | 
			
		||||
        {"label":"ISO BACKSLASH", "x":1.25, "y":4},
 | 
			
		||||
        {"label":"Z", "x":2.25, "y":4},
 | 
			
		||||
        {"label":"X", "x":3.25, "y":4},
 | 
			
		||||
        {"label":"C", "x":4.25, "y":4},
 | 
			
		||||
        {"label":"V", "x":5.25, "y":4},
 | 
			
		||||
        {"label":"B", "x":6.25, "y":4},
 | 
			
		||||
        {"label":"N", "x":7.25, "y":4},
 | 
			
		||||
        {"label":"M", "x":8.25, "y":4},
 | 
			
		||||
        {"label":"COMMA", "x":9.25, "y":4},
 | 
			
		||||
        {"label":"PERIOD", "x":10.25, "y":4},
 | 
			
		||||
        {"label":"SLASH", "x":11.25, "y":4},
 | 
			
		||||
        {"label":"RSHIFT", "x":12.25, "y":4, "w":1.75},
 | 
			
		||||
        {"label":"UP", "x":14, "y":4},
 | 
			
		||||
        {"label":"KEYPAD 1", "x":15, "y":4},
 | 
			
		||||
        {"label":"KEYPAD 2", "x":16, "y":4},
 | 
			
		||||
        {"label":"KEYPAD 3", "x":17, "y":4},
 | 
			
		||||
        {"label":"KEYPAD ENTER", "x":18, "y":4, "h":2},
 | 
			
		||||
 | 
			
		||||
        {"label":"LCTRL", "x":0, "y":5, "w":1.25},
 | 
			
		||||
        {"label":"LGUI", "x":1.25, "y":5, "w":1.25},
 | 
			
		||||
        {"label":"LALT", "x":2.5, "y":5, "w":1.25},
 | 
			
		||||
        {"label":"SPACE", "x":3.75, "y":5, "w":6.25},
 | 
			
		||||
        {"label":"RALT", "x":10, "y":5},
 | 
			
		||||
        {"label":"MENU", "x":11, "y":5},
 | 
			
		||||
        {"label":"RCTRL", "x":12, "y":5},
 | 
			
		||||
        {"label":"LEFT", "x":13, "y":5},
 | 
			
		||||
        {"label":"DOWN", "x":14, "y":5},
 | 
			
		||||
        {"label":"RIGHT", "x":15, "y":5},
 | 
			
		||||
        {"label":"KEYPAD 0", "x":16, "y":5},
 | 
			
		||||
        {"label":"KEYPAD .", "x":17, "y":5}
 | 
			
		||||
      ]
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										39
									
								
								keyboards/dztech/dz96/keymaps/default/keymap.c
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										39
									
								
								keyboards/dztech/dz96/keymaps/default/keymap.c
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,39 @@
 | 
			
		|||
/* Copyright 2020 kb-elmo<mail@elmo.space>
 | 
			
		||||
 *
 | 
			
		||||
 * This program is free software: you can redistribute it and/or modify
 | 
			
		||||
 * it under the terms of the GNU General Public License as published by
 | 
			
		||||
 * the Free Software Foundation, either version 2 of the License, or
 | 
			
		||||
 * (at your option) any later version.
 | 
			
		||||
 *
 | 
			
		||||
 * This program is distributed in the hope that it will be useful,
 | 
			
		||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
			
		||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
			
		||||
 * GNU General Public License for more details.
 | 
			
		||||
 *
 | 
			
		||||
 * You should have received a copy of the GNU General Public License
 | 
			
		||||
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
#include QMK_KEYBOARD_H
 | 
			
		||||
 | 
			
		||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
 | 
			
		||||
 | 
			
		||||
    [0] = LAYOUT_default(
 | 
			
		||||
        KC_ESC,  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_DEL,  KC_PSCR,    KC_SLCK, KC_PAUS, KC_PGUP, KC_PGDN,
 | 
			
		||||
        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_NLCK, KC_PSLS, KC_PAST, KC_PMNS,
 | 
			
		||||
        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_P7,   KC_P8,   KC_P9,   KC_PPLS,
 | 
			
		||||
        KC_CAPS, KC_A,    KC_S,    KC_D,    KC_F,    KC_G,    KC_H,    KC_J,    KC_K,    KC_L,    KC_SCLN, KC_QUOT,                   KC_ENT,     KC_P4,   KC_P5,   KC_P6,
 | 
			
		||||
        KC_LSFT,          KC_Z,    KC_X,    KC_C,    KC_V,    KC_B,    KC_N,    KC_M,    KC_COMM, KC_DOT,  KC_SLSH,          KC_RSFT, KC_UP,      KC_P1,   KC_P2,   KC_P3,   KC_PENT,
 | 
			
		||||
        KC_LCTL, KC_LGUI, KC_LALT,                            KC_SPC,                             KC_RALT, KC_RCTL, MO(1),   KC_LEFT, KC_DOWN, KC_RGHT,    KC_P0,   KC_PDOT
 | 
			
		||||
    ),
 | 
			
		||||
 | 
			
		||||
    [1] = LAYOUT_default(
 | 
			
		||||
        RESET,   _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MUTE, KC_VOLD,    KC_VOLU, KC_MNXT, KC_HOME, KC_END,
 | 
			
		||||
        _______, RGB_TOG, RGB_MOD, RGB_VAI, RGB_VAD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, _______, _______, _______, _______,          KC_DEL,     _______, _______, _______, _______,
 | 
			
		||||
        _______, BL_TOGG, BL_INC,  BL_DEC,  _______, _______, _______, _______, _______, _______, _______, _______, _______,          _______,    _______, _______, _______, _______,
 | 
			
		||||
        _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,                   _______,    _______, _______, _______,
 | 
			
		||||
        _______,          _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,          _______, _______,    _______, _______, _______, _______,
 | 
			
		||||
        _______, _______, _______,                            _______,                            _______, _______, _______, _______, _______, _______,    _______, _______
 | 
			
		||||
    ),
 | 
			
		||||
};
 | 
			
		||||
							
								
								
									
										39
									
								
								keyboards/dztech/dz96/keymaps/iso/keymap.c
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										39
									
								
								keyboards/dztech/dz96/keymaps/iso/keymap.c
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,39 @@
 | 
			
		|||
/* Copyright 2020 kb-elmo<mail@elmo.space>
 | 
			
		||||
 *
 | 
			
		||||
 * 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_iso(
 | 
			
		||||
        KC_ESC,  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_DEL,  KC_PSCR,    KC_HOME, KC_END,  KC_PGUP, KC_PGDN,
 | 
			
		||||
        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_NLCK, KC_PSLS, KC_PAST, KC_PMNS,
 | 
			
		||||
        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_P7,   KC_P8,   KC_P9,   KC_PPLS,
 | 
			
		||||
        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,     KC_P4,   KC_P5,   KC_P6,
 | 
			
		||||
        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_P1,   KC_P2,   KC_P3,   KC_PENT,
 | 
			
		||||
        KC_LCTL, KC_LGUI, KC_LALT,                            KC_SPC,                             KC_RALT, KC_RCTL, MO(1),   KC_LEFT, KC_DOWN, KC_RGHT,    KC_P0,   KC_PDOT
 | 
			
		||||
    ),
 | 
			
		||||
 | 
			
		||||
    [1] = LAYOUT_iso(
 | 
			
		||||
        RESET,   _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MUTE, KC_VOLD,    KC_VOLU, KC_MNXT, KC_HOME,  KC_END,
 | 
			
		||||
        _______, RGB_TOG, RGB_MOD, RGB_VAI, RGB_VAD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, _______, _______, _______, _______,          KC_DEL,     _______, _______, _______, _______,
 | 
			
		||||
        _______, BL_TOGG, BL_INC,  BL_DEC,  _______, _______, _______, _______, _______, _______, _______, _______, _______,                      _______, _______, _______, _______,
 | 
			
		||||
        _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,          _______,    _______, _______, _______,
 | 
			
		||||
        _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,          _______, _______,    _______, _______, _______, _______,
 | 
			
		||||
        _______, _______, _______,                            _______,                            _______, _______, _______, _______, _______, _______,    _______, _______
 | 
			
		||||
    ),
 | 
			
		||||
 | 
			
		||||
};
 | 
			
		||||
							
								
								
									
										57
									
								
								keyboards/dztech/dz96/keymaps/via/keymap.c
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										57
									
								
								keyboards/dztech/dz96/keymaps/via/keymap.c
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,57 @@
 | 
			
		|||
/* Copyright 2020 kb-elmo<mail@elmo.space>
 | 
			
		||||
 *
 | 
			
		||||
 * This program is free software: you can redistribute it and/or modify
 | 
			
		||||
 * it under the terms of the GNU General Public License as published by
 | 
			
		||||
 * the Free Software Foundation, either version 2 of the License, or
 | 
			
		||||
 * (at your option) any later version.
 | 
			
		||||
 *
 | 
			
		||||
 * This program is distributed in the hope that it will be useful,
 | 
			
		||||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
			
		||||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
			
		||||
 * GNU General Public License for more details.
 | 
			
		||||
 *
 | 
			
		||||
 * You should have received a copy of the GNU General Public License
 | 
			
		||||
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
#include QMK_KEYBOARD_H
 | 
			
		||||
 | 
			
		||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
 | 
			
		||||
 | 
			
		||||
    [0] = LAYOUT_default(
 | 
			
		||||
        KC_ESC,  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_DEL,  KC_PSCR,    KC_SLCK, KC_PAUS, KC_PGUP, KC_PGDN,
 | 
			
		||||
        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_NLCK, KC_PSLS, KC_PAST, KC_PMNS,
 | 
			
		||||
        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_P7,   KC_P8,   KC_P9,   KC_PPLS,
 | 
			
		||||
        KC_CAPS, KC_A,    KC_S,    KC_D,    KC_F,    KC_G,    KC_H,    KC_J,    KC_K,    KC_L,    KC_SCLN, KC_QUOT,                   KC_ENT,     KC_P4,   KC_P5,   KC_P6,
 | 
			
		||||
        KC_LSFT,          KC_Z,    KC_X,    KC_C,    KC_V,    KC_B,    KC_N,    KC_M,    KC_COMM, KC_DOT,  KC_SLSH,          KC_RSFT, KC_UP,      KC_P1,   KC_P2,   KC_P3,   KC_PENT,
 | 
			
		||||
        KC_LCTL, KC_LGUI, KC_LALT,                            KC_SPC,                             KC_RALT, KC_RCTL, MO(1),   KC_LEFT, KC_DOWN, KC_RGHT,    KC_P0,   KC_PDOT
 | 
			
		||||
    ),
 | 
			
		||||
 | 
			
		||||
    [1] = LAYOUT_default(
 | 
			
		||||
        RESET,   _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MUTE, KC_VOLD,    KC_VOLU, KC_MNXT, KC_HOME, KC_END,
 | 
			
		||||
        _______, RGB_TOG, RGB_MOD, RGB_VAI, RGB_VAD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, _______, _______, _______, _______,          KC_DEL,     _______, _______, _______, _______,
 | 
			
		||||
        _______, BL_TOGG, BL_INC,  BL_DEC,  _______, _______, _______, _______, _______, _______, _______, _______, _______,          _______,    _______, _______, _______, _______,
 | 
			
		||||
        _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,                   _______,    _______, _______, _______,
 | 
			
		||||
        _______,          _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,          _______, _______,    _______, _______, _______, _______,
 | 
			
		||||
        _______, _______, _______,                            _______,                            _______, _______, _______, _______, _______, _______,    _______, _______
 | 
			
		||||
    ),
 | 
			
		||||
 | 
			
		||||
    [2] = LAYOUT_default(
 | 
			
		||||
        _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,    _______, _______, _______, _______,
 | 
			
		||||
        _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,          _______,    _______, _______, _______, _______,
 | 
			
		||||
        _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,          _______,    _______, _______, _______, _______,
 | 
			
		||||
        _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,                   _______,    _______, _______, _______,
 | 
			
		||||
        _______,          _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,          _______, _______,    _______, _______, _______, _______,
 | 
			
		||||
        _______, _______, _______,                            _______,                            _______, _______, _______, _______, _______, _______,    _______, _______
 | 
			
		||||
    ),
 | 
			
		||||
 | 
			
		||||
    [3] = LAYOUT_default(
 | 
			
		||||
        _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,    _______, _______, _______, _______,
 | 
			
		||||
        _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,          _______,    _______, _______, _______, _______,
 | 
			
		||||
        _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,          _______,    _______, _______, _______, _______,
 | 
			
		||||
        _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,                   _______,    _______, _______, _______,
 | 
			
		||||
        _______,          _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,          _______, _______,    _______, _______, _______, _______,
 | 
			
		||||
        _______, _______, _______,                            _______,                            _______, _______, _______, _______, _______, _______,    _______, _______
 | 
			
		||||
    ),
 | 
			
		||||
};
 | 
			
		||||
							
								
								
									
										1
									
								
								keyboards/dztech/dz96/keymaps/via/rules.mk
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								keyboards/dztech/dz96/keymaps/via/rules.mk
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1 @@
 | 
			
		|||
VIA_ENABLE = yes
 | 
			
		||||
							
								
								
									
										15
									
								
								keyboards/dztech/dz96/readme.md
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										15
									
								
								keyboards/dztech/dz96/readme.md
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,15 @@
 | 
			
		|||
# DZ96
 | 
			
		||||
 | 
			
		||||

 | 
			
		||||
 | 
			
		||||
A 96% PCB made by KBDFans. Sold together with the Tofu96 DIY kit.
 | 
			
		||||
 | 
			
		||||
* Keyboard Maintainer: [kb-elmo](https://github.com/kb-elmo)
 | 
			
		||||
* Hardware Supported: DZ96
 | 
			
		||||
* Hardware Availability: [KBDFans](https://kbdfans.com/products/tofu96-mechanical-keyboard-diy-kit)
 | 
			
		||||
 | 
			
		||||
Make example for this keyboard (after setting up your build environment):
 | 
			
		||||
 | 
			
		||||
    make dztech/dz96:default
 | 
			
		||||
 | 
			
		||||
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).
 | 
			
		||||
							
								
								
									
										22
									
								
								keyboards/dztech/dz96/rules.mk
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										22
									
								
								keyboards/dztech/dz96/rules.mk
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,22 @@
 | 
			
		|||
# MCU name
 | 
			
		||||
MCU = atmega32u4
 | 
			
		||||
 | 
			
		||||
# Bootloader selection
 | 
			
		||||
BOOTLOADER = atmel-dfu
 | 
			
		||||
 | 
			
		||||
# Build Options
 | 
			
		||||
#   change yes to no to disable
 | 
			
		||||
#
 | 
			
		||||
BOOTMAGIC_ENABLE = lite     # Virtual DIP switch configuration
 | 
			
		||||
MOUSEKEY_ENABLE = no        # Mouse keys
 | 
			
		||||
EXTRAKEY_ENABLE = yes       # Audio control and System control
 | 
			
		||||
CONSOLE_ENABLE = no         # Console for debug
 | 
			
		||||
COMMAND_ENABLE = no         # Commands for debug and configuration
 | 
			
		||||
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
 | 
			
		||||
SLEEP_LED_ENABLE = no       # Breathing sleep LED during USB suspend
 | 
			
		||||
# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
 | 
			
		||||
NKRO_ENABLE = no            # USB Nkey Rollover
 | 
			
		||||
BACKLIGHT_ENABLE = yes      # Enable keyboard backlight functionality
 | 
			
		||||
RGBLIGHT_ENABLE = no        # Enable keyboard RGB underglow
 | 
			
		||||
BLUETOOTH_ENABLE = no       # Enable Bluetooth
 | 
			
		||||
AUDIO_ENABLE = no           # Audio output
 | 
			
		||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue