mirror of
https://github.com/joe-scotto/scottokeebs.git
synced 2026-08-24 10:14:29 -05:00
Add Scotto2
This commit is contained in:
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,12 @@
|
||||
[
|
||||
[
|
||||
"0,1\n\n\n\n\n\n\n\n\ne",
|
||||
"0,0\n\n\n\n\n\n\n\n\ne",
|
||||
{ "x": 1 },
|
||||
"1,1\n\n\n\n\n\n\n\n\ne",
|
||||
"1,0\n\n\n\n\n\n\n\n\ne"
|
||||
],
|
||||
[{ "x": 0.5 }, "0,0", { "x": 2 }, "0,3"],
|
||||
[{ "x": 0.5 }, "1,0", "1,1", "1,2", "1,3"],
|
||||
[{ "x": 0.5 }, "2,0", "2,1", "2,2", "2,3"]
|
||||
]
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"manufacturer": "ScottoKeebs",
|
||||
"keyboard_name": "Scotto2",
|
||||
"maintainer": "joe-scotto",
|
||||
"bootloader": "rp2040",
|
||||
"diode_direction": "COL2ROW",
|
||||
"features": {
|
||||
"bootmagic": true,
|
||||
"command": false,
|
||||
"console": false,
|
||||
"extrakey": true,
|
||||
"mousekey": true,
|
||||
"nkro": true
|
||||
},
|
||||
"matrix_pins": {
|
||||
"direct": [["GP13", "GP15"]]
|
||||
},
|
||||
"processor": "RP2040",
|
||||
"url": "https://scottokeebs.com",
|
||||
"usb": {
|
||||
"device_version": "1.0.0",
|
||||
"pid": "0x0043",
|
||||
"vid": "0xFEED"
|
||||
},
|
||||
"layouts": {
|
||||
"LAYOUT": {
|
||||
"layout": [
|
||||
{ "matrix": [0, 0], "x": 0, "y": 0 },
|
||||
{ "matrix": [0, 1], "x": 1, "y": 0 }
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
#include QMK_KEYBOARD_H
|
||||
|
||||
// clang-format off
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
// ┌──────┬──────┐
|
||||
// │ left │ rght │
|
||||
// └──────┴──────┘
|
||||
[0] = LAYOUT(
|
||||
KC_LEFT , KC_RIGHT
|
||||
)
|
||||
};
|
||||
// clang-format on
|
||||
@@ -0,0 +1,23 @@
|
||||
/*
|
||||
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
|
||||
|
||||
// Vial
|
||||
#define VIAL_KEYBOARD_UID {0xA4, 0x10, 0x65, 0xE0, 0x4C, 0xCC, 0xA9, 0x99}
|
||||
#define VIAL_UNLOCK_COMBO_ROWS {0, 0}
|
||||
#define VIAL_UNLOCK_COMBO_COLS {0, 1}
|
||||
@@ -0,0 +1,12 @@
|
||||
#include QMK_KEYBOARD_H
|
||||
|
||||
// clang-format off
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
// ┌──────┬──────┐
|
||||
// │ left │ rght │
|
||||
// └──────┴──────┘
|
||||
[0] = LAYOUT(
|
||||
KC_LEFT , KC_RIGHT
|
||||
)
|
||||
};
|
||||
// clang-format on
|
||||
@@ -0,0 +1,2 @@
|
||||
VIA_ENABLE = yes
|
||||
VIAL_ENABLE = yes
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"matrix": {
|
||||
"rows": 1,
|
||||
"cols": 2
|
||||
},
|
||||
"layouts": {
|
||||
"keymap": [["0,0", "0,1"]]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
# ScottoDeck
|
||||
|
||||

|
||||
|
||||
An 8-key macropad with two EC11 encoders designed for live streaming. Case files available [here](https://github.com/joe-scotto/scottokeebs).
|
||||
|
||||
* Keyboard Maintainer: [Joe Scotto](https://github.com/joe-scotto)
|
||||
* Hardware Supported: ATmega32U4
|
||||
* Hardware Availability: [Amazon](https://amazon.com)
|
||||
|
||||
Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
make handwired/scottokeebs/scottodeck:default
|
||||
|
||||
Flashing example for this keyboard:
|
||||
|
||||
make handwired/scottokeebs/scottodeck: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
|
||||
@@ -0,0 +1 @@
|
||||
# This file intentionally left blank
|
||||
@@ -0,0 +1,7 @@
|
||||
# Scotto2 (SK43)
|
||||
|
||||
The Scotto2 is a 2 key large button gamepad designed for accessibility.
|
||||
|
||||
You can read more about the components and how to build it [here](https://scottokeebs.com/blogs/macropads/scotto2-handwired-macropad).
|
||||
|
||||

|
||||
Reference in New Issue
Block a user