aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/ibm
diff options
context:
space:
mode:
authorkay2025-10-22 17:19:48 +0200
committerGitHub2025-10-22 17:19:48 +0200
commit1c1e8d7f7af36ae668a9a690f22e6535a48fde57 (patch)
treeea2424c5cce6bdd65b0181e2da3827efa55587fb /keyboards/ibm
parentd0db38cbdc9410dd58e6c83d18bca2232b823d24 (diff)
Fix Broken Numpad 0 on `yacobo` IBM Model M (#25742)
I built three of these and was confused as to why my numpad 0 wasn't working. Eventually, I consulted this website to see the key matrix for the Model M https://sharktastica.co.uk/sims/matrix?kb=enhanced `kp_0` is in the matrix at [0, 12], not [0, 11]. Simple off by one error. I fixed this, flashed to all my keyboards, and it worked. Co-authored-by: Kay Barkbark <kay@laptop>
Diffstat (limited to 'keyboards/ibm')
-rw-r--r--keyboards/ibm/model_m/yacobo/keyboard.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/ibm/model_m/yacobo/keyboard.json b/keyboards/ibm/model_m/yacobo/keyboard.json
index 7ea9c6a621..dd88ac5cd4 100644
--- a/keyboards/ibm/model_m/yacobo/keyboard.json
+++ b/keyboards/ibm/model_m/yacobo/keyboard.json
@@ -153,7 +153,7 @@
{"label": "\u2193", "matrix": [7, 11], "x": 16.5, "y": 5.5},
{"label": "\u2192", "matrix": [7, 12], "x": 17.5, "y": 5.5},
- {"label": "0", "matrix": [0, 11], "x": 19, "y": 5.5, "w": 2},
+ {"label": "0", "matrix": [0, 12], "x": 19, "y": 5.5, "w": 2},
{"label": ".", "matrix": [0, 13], "x": 21, "y": 5.5}
]
},
@@ -277,7 +277,7 @@
{"label": "\u2193", "matrix": [7, 11], "x": 16.5, "y": 5.5},
{"label": "\u2192", "matrix": [7, 12], "x": 17.5, "y": 5.5},
- {"label": "0", "matrix": [0, 11], "x": 19, "y": 5.5, "w": 2},
+ {"label": "0", "matrix": [0, 12], "x": 19, "y": 5.5, "w": 2},
{"label": ".", "matrix": [0, 13], "x": 21, "y": 5.5}
]
}