diff options
author | Ryan <fauxpark@gmail.com> | 2024-04-28 00:36:54 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-28 00:36:54 +1000 |
commit | 0ff53b24984e88f385638e47ea076b4d2945c0c6 (patch) | |
tree | 73c0e43df640c132507cb146447adfb7d0ed4b49 /data/schemas/keyboard.jsonschema | |
parent | 8f8fffc1740be81fbfe4a07a74e9f03962c1062a (diff) |
Rename `RGBW` define to `WS2812_RGBW` (#23585)
Diffstat (limited to 'data/schemas/keyboard.jsonschema')
-rw-r--r-- | data/schemas/keyboard.jsonschema | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/data/schemas/keyboard.jsonschema b/data/schemas/keyboard.jsonschema index 585c64777f..de01809b43 100644 --- a/data/schemas/keyboard.jsonschema +++ b/data/schemas/keyboard.jsonschema @@ -661,7 +661,10 @@ "$ref": "qmk.definitions.v1#/mcu_pin", "$comment": "Deprecated: use ws2812.pin instead" }, - "rgbw": {"type": "boolean"}, + "rgbw": { + "type": "boolean", + "$comment": "Deprecated: use ws2812.rgbw instead" + }, "saturation_steps": {"$ref": "qmk.definitions.v1#/unsigned_int"}, "sleep": {"type": "boolean"}, "split": {"type": "boolean"}, @@ -937,6 +940,7 @@ "enum": ["bitbang", "custom", "i2c", "pwm", "spi", "vendor"] }, "pin": {"$ref": "qmk.definitions.v1#/mcu_pin"}, + "rgbw": {"type": "boolean"}, "i2c_address": {"$ref": "qmk.definitions.v1#/hex_number_2d"}, "i2c_timeout": {"$ref": "qmk.definitions.v1#/unsigned_int"} } |