diff options
| author | Drashna Jaelre | 2024-03-06 12:02:37 +0100 |
|---|---|---|
| committer | GitHub | 2024-03-06 12:02:37 +0100 |
| commit | 83e6ddbbb4c8e715bfe419c4d7fc0ae305ea5bd5 (patch) | |
| tree | 28fd4e4bbbb83fc41e3800c5b95369592c6e9942 /data/schemas | |
| parent | 045e5c9729f22a8ab8a3f22fe9c0e6b51d1940fe (diff) | |
[Audio] Add support for audio shutdown pin (#22731)
Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'data/schemas')
| -rw-r--r-- | data/schemas/keyboard.jsonschema | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/data/schemas/keyboard.jsonschema b/data/schemas/keyboard.jsonschema index 340eb64ba1..5c6788913b 100644 --- a/data/schemas/keyboard.jsonschema +++ b/data/schemas/keyboard.jsonschema @@ -135,6 +135,14 @@ }, "macro_beep": {"type": "boolean"}, "pins": {"$ref": "qmk.definitions.v1#/mcu_pin_array"}, + "power_control": { + "type": "object", + "additionalProperties": false, + "properties": { + "on_state": {"$ref": "qmk.definitions.v1#/bit"}, + "pin": {"$ref": "qmk.definitions.v1#/mcu_pin"} + } + }, "voices": {"type": "boolean"} } }, |