New firmware for Ryan
This commit is contained in:
9
Firmware/MacroPad_Rev3_Ver2/README.md
Normal file
9
Firmware/MacroPad_Rev3_Ver2/README.md
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
# MacroPad Rev 3 Ver 1 Firmware
|
||||||
|
|
||||||
|
This is the first version of the firmware for the MacroPad Project. This firmware works specifically with the Rev. 3 board. It's pretty basic, one keymap, one layout, letters A through P, and the LEDs to a basic rainbow effect.
|
||||||
|
|
||||||
|
From this starting point more advanced firmwares can be developed. Hopefully I'll get around to that someday...
|
||||||
|
|
||||||
|
## Keymaps
|
||||||
|
**Default** - July 2025
|
||||||
|
Just the characters A through P, nothing special.
|
||||||
78
Firmware/MacroPad_Rev3_Ver2/keyboard.json
Normal file
78
Firmware/MacroPad_Rev3_Ver2/keyboard.json
Normal file
@@ -0,0 +1,78 @@
|
|||||||
|
{
|
||||||
|
"manufacturer": "Molly Zaugg",
|
||||||
|
"keyboard_name": "macropad6",
|
||||||
|
"maintainer": "Molly Zaugg",
|
||||||
|
"bootloader": "atmel-dfu",
|
||||||
|
"diode_direction": "ROW2COL",
|
||||||
|
"features": {
|
||||||
|
"bootmagic": true,
|
||||||
|
"mousekey": false,
|
||||||
|
"extrakey": false,
|
||||||
|
"console": false,
|
||||||
|
"command": false,
|
||||||
|
"nkro": false,
|
||||||
|
"backlight": false,
|
||||||
|
"rgblight": true,
|
||||||
|
"rgbmatrix": false,
|
||||||
|
"audio": false,
|
||||||
|
"key_lock": false
|
||||||
|
},
|
||||||
|
"rgblight": {
|
||||||
|
"led_count": 16,
|
||||||
|
"hue_steps": 8,
|
||||||
|
"saturation_steps": 8,
|
||||||
|
"brightness_steps": 8,
|
||||||
|
"max_brightness": 100,
|
||||||
|
"sleep": false,
|
||||||
|
"driver": "ws2812",
|
||||||
|
"animations": {
|
||||||
|
"rainbow_mood": true,
|
||||||
|
"static_light": true
|
||||||
|
},
|
||||||
|
"default": {
|
||||||
|
"animation": "rainbow_mood",
|
||||||
|
"on": true,
|
||||||
|
"hue": 20,
|
||||||
|
"sat": 255,
|
||||||
|
"val": 255,
|
||||||
|
"speed": 1
|
||||||
|
},
|
||||||
|
},
|
||||||
|
"ws2812": {
|
||||||
|
"pin": "C6"
|
||||||
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["E2","B6","B5","B4"],
|
||||||
|
"rows": ["D3","D2","D1","D0"]
|
||||||
|
},
|
||||||
|
"processor": "atmega32u4",
|
||||||
|
"url": "",
|
||||||
|
"usb": {
|
||||||
|
"device_version": "1.0.0",
|
||||||
|
"pid": "0x0000",
|
||||||
|
"vid": "0xFEED"
|
||||||
|
},
|
||||||
|
"layouts": {
|
||||||
|
"LAYOUT_all": {
|
||||||
|
"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": [1, 3], "x": 3, "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": [3, 0], "x": 0, "y": 3},
|
||||||
|
{"matrix": [3, 1], "x": 1, "y": 3},
|
||||||
|
{"matrix": [3, 2], "x": 2, "y": 3},
|
||||||
|
{"matrix": [3, 3], "x": 3, "y": 3}
|
||||||
|
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
13
Firmware/MacroPad_Rev3_Ver2/keymaps/default/keymap.c
Normal file
13
Firmware/MacroPad_Rev3_Ver2/keymaps/default/keymap.c
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
// Copyright 2023 QMK
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
#include QMK_KEYBOARD_H
|
||||||
|
|
||||||
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
|
|
||||||
|
[0] = LAYOUT_all(
|
||||||
|
KC_F, KC_E, KC_D, KC_C,
|
||||||
|
KC_B, KC_A, KC_9, KC_8,
|
||||||
|
KC_7, KC_6, KC_5, KC_4,
|
||||||
|
KC_3, KC_2, KC_1, KC_0)
|
||||||
|
};
|
||||||
1026
Firmware/MacroPad_Rev3_Ver2/macropad_rev3_ver2_default.hex
Normal file
1026
Firmware/MacroPad_Rev3_Ver2/macropad_rev3_ver2_default.hex
Normal file
File diff suppressed because it is too large
Load Diff
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"board": {
|
"board": {
|
||||||
"active_layer": 2,
|
"active_layer": 0,
|
||||||
"active_layer_preset": "Back Layers",
|
"active_layer_preset": "Front Layers",
|
||||||
"auto_track_width": true,
|
"auto_track_width": true,
|
||||||
"hidden_netclasses": [],
|
"hidden_netclasses": [],
|
||||||
"hidden_nets": [],
|
"hidden_nets": [],
|
||||||
@@ -48,7 +48,7 @@
|
|||||||
"conflict_shadows",
|
"conflict_shadows",
|
||||||
"shapes"
|
"shapes"
|
||||||
],
|
],
|
||||||
"visible_layers": "00000000_00000000_00000002_2200888c",
|
"visible_layers": "00000000_00000000_00000008_82002223",
|
||||||
"zone_display_mode": 0
|
"zone_display_mode": 0
|
||||||
},
|
},
|
||||||
"git": {
|
"git": {
|
||||||
|
|||||||
@@ -463,6 +463,7 @@
|
|||||||
"single_global_label": "ignore",
|
"single_global_label": "ignore",
|
||||||
"unannotated": "error",
|
"unannotated": "error",
|
||||||
"unconnected_wire_endpoint": "warning",
|
"unconnected_wire_endpoint": "warning",
|
||||||
|
"undefined_netclass": "error",
|
||||||
"unit_value_mismatch": "error",
|
"unit_value_mismatch": "error",
|
||||||
"unresolved_variable": "error",
|
"unresolved_variable": "error",
|
||||||
"wire_dangling": "error"
|
"wire_dangling": "error"
|
||||||
|
|||||||
1
Hardware/Rev. 3/fp-info-cache
Normal file
1
Hardware/Rev. 3/fp-info-cache
Normal file
@@ -0,0 +1 @@
|
|||||||
|
0
|
||||||
Reference in New Issue
Block a user