Add NortonTech handwired keypad (NortonTechPad) (#21148)
parent
f136171753
commit
d042b92e7a
@ -0,0 +1,24 @@ |
|||||||
|
/* Copyright 2020 Joel Schneider
|
||||||
|
* |
||||||
|
* 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 |
||||||
|
|
||||||
|
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ |
||||||
|
#define LOCKING_SUPPORT_ENABLE |
||||||
|
|
||||||
|
/* Locking resynchronize hack */ |
||||||
|
#define LOCKING_RESYNC_ENABLE |
||||||
|
|
@ -0,0 +1,53 @@ |
|||||||
|
{ |
||||||
|
"keyboard_name": "NortonTechPad", |
||||||
|
"manufacturer": "NortonTech", |
||||||
|
"url": "", |
||||||
|
"maintainer": "NortonTech", |
||||||
|
"usb": { |
||||||
|
"vid": "0x9879", |
||||||
|
"pid": "0x0001", |
||||||
|
"device_version": "0.0.1" |
||||||
|
}, |
||||||
|
"features": { |
||||||
|
"bootmagic": true, |
||||||
|
"extrakey": true, |
||||||
|
"mousekey": true, |
||||||
|
"nkro": true |
||||||
|
}, |
||||||
|
"matrix_pins": { |
||||||
|
"cols": ["D7", "E6", "B4", "B5"], |
||||||
|
"rows": ["F7", "B1", "B3", "B2", "B6"] |
||||||
|
}, |
||||||
|
"diode_direction": "COL2ROW", |
||||||
|
"development_board": "promicro", |
||||||
|
"community_layouts": ["numpad_5x4"], |
||||||
|
"layouts": { |
||||||
|
"LAYOUT_numpad_5x4": { |
||||||
|
"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": [1, 0], "x": 0, "y": 1}, |
||||||
|
{"matrix": [1, 1], "x": 1, "y": 1}, |
||||||
|
{"matrix": [1, 2], "x": 2, "y": 1}, |
||||||
|
|
||||||
|
{"matrix": [2, 0], "x": 0, "y": 2}, |
||||||
|
{"matrix": [2, 1], "x": 1, "y": 2}, |
||||||
|
{"matrix": [2, 2], "x": 2, "y": 2}, |
||||||
|
{"matrix": [1, 3], "x": 3, "y": 1, "h": 2}, |
||||||
|
|
||||||
|
|
||||||
|
{"matrix": [3, 0], "x": 0, "y": 3}, |
||||||
|
{"matrix": [3, 1], "x": 1, "y": 3}, |
||||||
|
{"matrix": [3, 2], "x": 2, "y": 3}, |
||||||
|
|
||||||
|
|
||||||
|
{"matrix": [4, 0], "x": 0, "y": 4, "w": 2}, |
||||||
|
{"matrix": [4, 2], "x": 2, "y": 4}, |
||||||
|
{"matrix": [4, 3], "x": 3, "y": 3, "h": 2} |
||||||
|
] |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,27 @@ |
|||||||
|
/* Copyright 2020 Joel Schneider
|
||||||
|
* |
||||||
|
* 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_numpad_5x4( |
||||||
|
KC_NUM, KC_PSLS, KC_PAST, KC_PMNS, |
||||||
|
KC_P7, KC_P8, KC_P9, |
||||||
|
KC_P4, KC_P5, KC_P6, KC_PPLS, |
||||||
|
KC_P1, KC_P2, KC_P3, |
||||||
|
KC_P0, KC_PDOT, KC_PENT |
||||||
|
) |
||||||
|
}; |
@ -0,0 +1,27 @@ |
|||||||
|
/* Copyright 2020 Joel Schneider
|
||||||
|
* |
||||||
|
* 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_numpad_5x4( |
||||||
|
KC_NUM, KC_PSLS, KC_PAST, KC_PMNS, |
||||||
|
KC_P7, KC_P8, KC_P9, |
||||||
|
KC_P4, KC_P5, KC_P6, KC_PPLS, |
||||||
|
KC_P1, KC_P2, KC_P3, |
||||||
|
KC_P0, KC_PDOT, KC_PENT |
||||||
|
) |
||||||
|
}; |
@ -0,0 +1 @@ |
|||||||
|
VIA_ENABLE = yes
|
@ -0,0 +1,27 @@ |
|||||||
|
# NortonTechPad |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The NortonTechPad is a numpad inspired by the SiCK-Pad,it is also 3D printed and designed to be inexpensive. |
||||||
|
|
||||||
|
- Keyboard Maintainer: [NortonTech](https://github.com/NortonTech-Official) |
||||||
|
- Hardware Supported: Pro Micro |
||||||
|
|
||||||
|
|
||||||
|
Make example for this keyboard (after setting up your build environment): |
||||||
|
|
||||||
|
make handwired/nortontechpad:default |
||||||
|
|
||||||
|
Flashing example for this keyboard: |
||||||
|
|
||||||
|
make handwired/nortontechpad: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 top left key and plug in the keyboard. This will also clear EEPROM, so it is a good first step if the keyboard is misbehaving. |
||||||
|
* **Physical reset button**: Short the GND and RST pins on the Pro Micro with something conductive. |
||||||
|
* **Keycode in layout**: There is no key mapped to `QK_BOOT` in the pre-created keymaps, but you may assign this key in any keymaps you create. |
@ -0,0 +1 @@ |
|||||||
|
# This file intentionally left blank
|
Loading…
Reference in new issue