Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adding new keyboard atset/atr1 #24721

Open
wants to merge 24 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 16 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions keyboards/atset/atr1/info.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"manufacturer": "Atset",
"keyboard_name": "AT1",
"maintainer": "atset",
"features": {
"bootmagic": true,
"command": false,
"console": false,
"extrakey": true,
"mousekey": true,
"nkro": false
anubhavd7 marked this conversation as resolved.
Show resolved Hide resolved
},
"url": "http://atsetmediscience.com",
"usb": {
"vid": "0x4249",
"pid": "0x4295"
},
anubhavd7 marked this conversation as resolved.
Show resolved Hide resolved
"layouts": {
"LAYOUT_ortho_3x3": {
"layout": [
{"matrix": [0, 0], "x": 0, "y": 0, "label": "k00"},
{"matrix": [0, 1], "x": 1, "y": 0, "label": "k01"},
{"matrix": [0, 2], "x": 2, "y": 0, "label": "k02"},
{"matrix": [1, 0], "x": 0, "y": 1, "label": "k10"},
{"matrix": [1, 1], "x": 1, "y": 1, "label": "k11"},
{"matrix": [1, 2], "x": 2, "y": 1, "label": "k12"},
{"matrix": [2, 0], "x": 0, "y": 2, "label": "k20"},
{"matrix": [2, 1], "x": 1, "y": 2, "label": "k21"},
{"matrix": [2, 2], "x": 2, "y": 2, "label": "k22"}
]
}
}
}
15 changes: 15 additions & 0 deletions keyboards/atset/atr1/keymaps/default/keymap.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"keyboard": "at1/r2",
"version": 1,
"author": "atset",
"notes": "This file is a keymap.json file for binepad/bn009r2",
anubhavd7 marked this conversation as resolved.
Show resolved Hide resolved
"keymap": "default",
"layout": "LAYOUT_ortho_3x3",
"layers": [
[
"KC_7", "KC_8", "KC_9",
"KC_4", "KC_5", "KC_6",
"KC_1", "KC_2", "KC_3"
]
]
}
18 changes: 18 additions & 0 deletions keyboards/atset/atr1/r1/keyboard.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"keyboard_name": "ATR1 R1",
"bootloader": "stm32duino",
"diode_direction": "COL2ROW",
"matrix_pins": {
"cols": ["A1", "A2", "A6"],
"rows": ["B6", "B7", "B2"]
},
"eeprom": {
"wear_leveling": {
"backing_size": 4096
}
},
"processor": "STM32F103",
"usb": {
"device_version": "1.0.0"
}
}
3 changes: 3 additions & 0 deletions keyboards/atset/atr1/r1/readme.md
anubhavd7 marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# ATSET AT1

* Hardware Supported: AT1 *(ft. STM32F103)*
30 changes: 30 additions & 0 deletions keyboards/atset/atr1/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# ATSET AT1

![ATSET AT1](https://imgur.com/fu0iXD0h.jpg)

A 9% macropad.

* Keyboard Maintainer: [atset]
* Hardware Supported:

* ATR1 R1 *(ft. STM32F103)*
* Hardware Availability:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please provide a link to where this keyboard can be purchased under the Hardware Availability section.

Suggested change
* Hardware Supported:
* ATR1 R1 *(ft. STM32F103)*
* Hardware Availability:
* Hardware Supported: ATR1 R1 PCB with STM32F103
* Hardware Availability:


Make example for this keyboard (after setting up your build environment):

make atr1/r1:default

Flashing example for this keyboard:

make atr1/r1: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) and plug in the keyboard
* **Physical reset button**: Briefly press the button under the small hole on the back of the macropad
* **Keycode in layout**: Press the key mapped to `QK_BOOT` or `RESET` if it is available
anubhavd7 marked this conversation as resolved.
Show resolved Hide resolved
Loading