Skip to content

Instantly share code, notes, and snippets.

@yhara
Created December 31, 2022 13:24
Show Gist options
  • Save yhara/4e645a25b8821063bb0cf455ed283af8 to your computer and use it in GitHub Desktop.
Save yhara/4e645a25b8821063bb0cf455ed283af8 to your computer and use it in GitHub Desktop.
diff --git a/keyboards/ez_maker/directpins/rp2040/info.json b/keyboards/ez_maker/directpins/rp2040/info.json
index 9b707d257f..f4be4a58db 100644
--- a/keyboards/ez_maker/directpins/rp2040/info.json
+++ b/keyboards/ez_maker/directpins/rp2040/info.json
@@ -11,8 +11,8 @@
},
"matrix_pins": {
"direct": [
- ["GP0", null],
- ["GP1", null],
+ ["GP0", "GP23"],
+ ["GP1", "GP29"],
["GP2", null],
["GP3", null],
@@ -42,8 +42,8 @@
"layouts": {
"LAYOUT_all": {
"layout": [
- {"label":"GP0", "matrix": [0, 0], "x":0, "y":0},
- {"label":"GP1", "matrix": [1, 0], "x":0, "y":1},
+ {"label":"GP0", "matrix": [0, 0], "x":0, "y":0}, {"label":"GP23", "matrix": [0, 1], "x":2, "y":0},
+ {"label":"GP1", "matrix": [1, 0], "x":0, "y":1}, {"label":"GP29", "matrix": [1, 1], "x":2, "y":1},
{"label":"GP2", "matrix": [2, 0], "x":0, "y":3},
{"label":"GP3", "matrix": [3, 0], "x":0, "y":4},
{"label":"GP4", "matrix": [4, 0], "x":0, "y":5},
diff --git a/keyboards/ez_maker/directpins/rp2040/keymaps/default/keymap.json b/keyboards/ez_maker/directpins/rp2040/keymaps/default/keymap.json
index 3bae28a360..daee339dd9 100644
--- a/keyboards/ez_maker/directpins/rp2040/keymaps/default/keymap.json
+++ b/keyboards/ez_maker/directpins/rp2040/keymaps/default/keymap.json
@@ -4,22 +4,22 @@
"layout": "LAYOUT_all",
"layers": [
[
- "KC_0",
+ "KC_X", "KC_G",
+ "KC_X", "KC_A",
"KC_1",
"KC_2",
"KC_3",
- "KC_4",
- "KC_5", "KC_P",
- "KC_6", "KC_O",
- "KC_7", "KC_N",
- "KC_8",
- "KC_9", "KC_M",
- "KC_A", "KC_L",
- "KC_B", "KC_K",
- "KC_C", "KC_J",
- "KC_D", "KC_I",
- "KC_E", "KC_H",
- "KC_F", "KC_G"
+ "KC_4", "KC_B",
+ "KC_5", "KC_C",
+ "KC_6", "KC_D",
+ "KC_7",
+ "KC_8", "KC_E",
+ "KC_X", "RGB_TOG",
+ "KC_X", "KC_F",
+ "KC_X", "KC_X",
+ "KC_X", "KC_X",
+ "KC_X", "KC_X",
+ "KC_X", "KC_X"
]
]
}
diff --git a/keyboards/ez_maker/directpins/rp2040/rules.mk b/keyboards/ez_maker/directpins/rp2040/rules.mk
index 6e7633bfe0..40f0d715fc 100644
--- a/keyboards/ez_maker/directpins/rp2040/rules.mk
+++ b/keyboards/ez_maker/directpins/rp2040/rules.mk
@@ -1 +1,4 @@
-# This file intentionally left blank
+WS2812_DRIVER = vendor
+RGBLIGHT_ENABLE = yes
+CONSOLE_ENABLE = yes
+
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment