From 647089adf9d13cc22f8e874114bc583200d51924 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Sun, 20 Jun 2021 09:44:47 +0200 Subject: [PATCH] allow LINE_PINxx for Teensy 4.x pins for indicator LEDs as well related to https://github.com/qmk/qmk_firmware/issues/13052 --- data/schemas/keyboard.jsonschema | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/data/schemas/keyboard.jsonschema b/data/schemas/keyboard.jsonschema index 177bb0a96178..113f6af02e22 100644 --- a/data/schemas/keyboard.jsonschema +++ b/data/schemas/keyboard.jsonschema @@ -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})$" } } },