diff options
author | lokher <lokher@gmail.com> | 2023-03-02 12:12:18 +0800 |
---|---|---|
committer | lokher <lokher@gmail.com> | 2023-03-02 12:12:18 +0800 |
commit | dd3a745176b002806ac95082115e09e72a033d28 (patch) | |
tree | 974f60f160e2cdc65aaf585bafba863dab449d0c /keyboards/keychron/k4_pro | |
parent | 77f3d1738b6c9cba7aa7aae840200317a2bad73e (diff) |
Add k7_pro and k10_pro; Update VIA json to match backlit effect list and fix k6_pro iso layout; Fix rtc issue
Diffstat (limited to 'keyboards/keychron/k4_pro')
-rw-r--r-- | keyboards/keychron/k4_pro/via_json/k4_pro_ansi_rgb.json | 62 |
1 files changed, 61 insertions, 1 deletions
diff --git a/keyboards/keychron/k4_pro/via_json/k4_pro_ansi_rgb.json b/keyboards/keychron/k4_pro/via_json/k4_pro_ansi_rgb.json index fffab840e4..daf83d4802 100644 --- a/keyboards/keychron/k4_pro/via_json/k4_pro_ansi_rgb.json +++ b/keyboards/keychron/k4_pro/via_json/k4_pro_ansi_rgb.json @@ -3,7 +3,67 @@ "vendorId": "0x3434", "productId": "0x0240", "keycodes": ["qmk_lighting"], - "menus": ["qmk_rgb_matrix"], + "menus": [ + { + "label": "Lighting", + "content": [ + { + "label": "Backlight", + "content": [ + { + "label": "Brightness", + "type": "range", + "options": [0, 255], + "content": ["id_qmk_rgb_matrix_brightness", 3, 1] + }, + { + "label": "Effect", + "type": "dropdown", + "content": ["id_qmk_rgb_matrix_effect", 3, 2], + "options": [ + ["None", 0], + ["Solid Color", 1], + ["Breathing", 2], + ["Band Spiral Val", 3], + ["Cycle All", 4], + ["Cycle Left Right", 5], + ["Cycle Up Down", 6], + ["Rainbow Moving Chevron", 7], + ["Cycle Out In", 8], + ["Cycle Out In Dual", 9], + ["Cycle Pinwheel", 10], + ["Cycle Spiral", 11], + ["Dual Beacon", 12], + ["Rainbow Beacon", 13], + ["Jellybean Raindrops", 14], + ["Pixel Rain", 15], + ["Typing Heatmap", 16], + ["Digital Rain", 17], + ["Reactive Simple", 18], + ["Reactive Multiwide", 19], + ["Reactive Multinexus", 20], + ["Splash", 21], + ["Solid Splash", 22] + ] + }, + { + "showIf": "{id_qmk_rgb_matrix_effect} > 1", + "label": "Effect Speed", + "type": "range", + "options": [0, 255], + "content": ["id_qmk_rgb_matrix_effect_speed", 3, 3] + }, + { + "showIf": "{id_qmk_rgb_matrix_effect} != 0 && ( {id_qmk_rgb_matrix_effect} < 4 || {id_qmk_rgb_matrix_effect} == 18 || ({id_qmk_rgb_matrix_effect} > 17 && {id_qmk_rgb_matrix_effect} != 21) ) ", + "label": "Color", + "type": "color", + "content": ["id_qmk_rgb_matrix_color", 3, 4] + } + ] + } + ] + } + ], "customKeycodes": [ {"name": "Left Option", "title": "Left Option", "shortName": "LOpt"}, {"name": "Right Option", "title": "Right Option", "shortName": "ROpt"}, |