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>
This commit is contained in:
parent
d0db38cbdc
commit
1c1e8d7f7a
1 changed files with 2 additions and 2 deletions
|
|
@ -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}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue