diff options
author | Joel Challis <git@zvecr.com> | 2023-08-25 00:47:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-25 00:47:12 +0100 |
commit | a9e2f6a25aeb0a3d69dcdeb33be0b364f9c37beb (patch) | |
tree | 88b8913c2ebd077cf3d1acc2c909ac3f761a2995 /data | |
parent | 0c51ed71e421c237ca862d8a24fa3b286dec7cff (diff) |
Remove `led_matrix.hue_steps` and `led_matrix.sat_steps` from schema (#21827)
Diffstat (limited to 'data')
-rw-r--r-- | data/mappings/info_config.hjson | 2 | ||||
-rw-r--r-- | data/schemas/keyboard.jsonschema | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/data/mappings/info_config.hjson b/data/mappings/info_config.hjson index 56d6216c42..cc1787b8c2 100644 --- a/data/mappings/info_config.hjson +++ b/data/mappings/info_config.hjson @@ -64,9 +64,7 @@ // LED Matrix "LED_MATRIX_CENTER": {"info_key": "led_matrix.center_point", "value_type": "array.int"}, - "LED_MATRIX_HUE_STEP": {"info_key": "led_matrix.hue_steps", "value_type": "int"}, "LED_MATRIX_MAXIMUM_BRIGHTNESS": {"info_key": "led_matrix.max_brightness", "value_type": "int"}, - "LED_MATRIX_SAT_STEP": {"info_key": "led_matrix.sat_steps", "value_type": "int"}, "LED_MATRIX_SPD_STEP": {"info_key": "led_matrix.speed_steps", "value_type": "int"}, "LED_MATRIX_SPLIT": {"info_key": "led_matrix.split_count", "value_type": "array.int"}, "LED_MATRIX_TIMEOUT": {"info_key": "led_matrix.timeout", "value_type": "int"}, diff --git a/data/schemas/keyboard.jsonschema b/data/schemas/keyboard.jsonschema index aea76af50a..4beaa57a23 100644 --- a/data/schemas/keyboard.jsonschema +++ b/data/schemas/keyboard.jsonschema @@ -382,8 +382,6 @@ }, "max_brightness": {"$ref": "qmk.definitions.v1#/unsigned_int_8"}, "timeout": {"$ref": "qmk.definitions.v1#/unsigned_int"}, - "hue_steps": {"$ref": "qmk.definitions.v1#/unsigned_int"}, - "sat_steps": {"$ref": "qmk.definitions.v1#/unsigned_int"}, "val_steps": {"$ref": "qmk.definitions.v1#/unsigned_int"}, "speed_steps": {"$ref": "qmk.definitions.v1#/unsigned_int"}, "split_count": { |