summaryrefslogtreecommitdiff
path: root/data/schemas
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2023-03-30 12:21:02 +1100
committerGitHub <noreply@github.com>2023-03-30 12:21:02 +1100
commit647c2835e65995339fb9380830c53725a62f6299 (patch)
tree8e5b96ea65f2a4c5e0990ac09dfc7f019ac1b90e /data/schemas
parent7e1e662dc704736b88cc4a7487457638b72f54e8 (diff)
WS2812 driver improvements (#20262)
Diffstat (limited to 'data/schemas')
-rw-r--r--data/schemas/keyboard.jsonschema6
1 files changed, 4 insertions, 2 deletions
diff --git a/data/schemas/keyboard.jsonschema b/data/schemas/keyboard.jsonschema
index 18b3514aa5..47decf1a15 100644
--- a/data/schemas/keyboard.jsonschema
+++ b/data/schemas/keyboard.jsonschema
@@ -707,8 +707,10 @@
"properties": {
"driver": {
"type": "string",
- "enum": ["bitbang", "i2c", "pwm", "spi", "vendor"]
- }
+ "enum": ["bitbang", "custom", "i2c", "pwm", "spi", "vendor"]
+ },
+ "i2c_address": {"$ref": "qmk.definitions.v1#/hex_number_2d"},
+ "i2c_timeout": {"$ref": "qmk.definitions.v1#/unsigned_int"}
}
}
}