Skip to content

Commit

Permalink
allow LINE_PINxx for Teensy 4.x pins for indicator LEDs as well
Browse files Browse the repository at this point in the history
related to qmk#13052
  • Loading branch information
stapelberg committed Jun 20, 2021
1 parent f106f77 commit 647089a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions data/schemas/keyboard.jsonschema
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,15 @@
"properties": {
"caps_lock": {
"type": "string",
"pattern": "^[A-K]\\d{1,2}$"
"pattern": "^([A-K]\\d{1,2}|LINE_PIN\\d{1,2})$"
},
"num_lock": {
"type": "string",
"pattern": "^[A-K]\\d{1,2}$"
"pattern": "^([A-K]\\d{1,2}|LINE_PIN\\d{1,2})$"
},
"scroll_lock": {
"type": "string",
"pattern": "^[A-K]\\d{1,2}$"
"pattern": "^([A-K]\\d{1,2}|LINE_PIN\\d{1,2})$"
}
}
},
Expand Down

0 comments on commit 647089a

Please sign in to comment.