~ruther/qmk_firmware

af6aa225ebfc64caf571601b3e3390614daad54f — Joel Challis 3 years ago b494bc4
Additional DD backlight config (#19124)

* Additional dd backlight config

* Update docs
M data/mappings/info_config.hjson => data/mappings/info_config.hjson +2 -0
@@ 14,8 14,10 @@
    "BACKLIGHT_BREATHING": {"info_key": "backlight.breathing", "value_type": "bool"},
    "BREATHING_PERIOD": {"info_key": "backlight.breathing_period", "value_type": "int"},
    "BACKLIGHT_LEVELS": {"info_key": "backlight.levels", "value_type": "int"},
    "BACKLIGHT_LIMIT_VAL": {"info_key": "backlight.max_brightness", "value_type": "int"},
    "BACKLIGHT_ON_STATE": {"info_key": "backlight.on_state", "value_type": "int"},
    "BACKLIGHT_PIN": {"info_key": "backlight.pin"},
    "BACKLIGHT_PINS": {"info_key": "backlight.pins", "value_type": "array"},
    "BOTH_SHIFTS_TURNS_ON_CAPS_WORD": {"info_key": "caps_word.both_shifts_turns_on", "value_type": "bool"},
    "CAPS_WORD_IDLE_TIMEOUT": {"info_key": "caps_word.idle_timeout", "value_type": "int"},
    "COMBO_COUNT": {"info_key": "combo.count", "value_type": "int"},

M data/schemas/keyboard.jsonschema => data/schemas/keyboard.jsonschema +2 -0
@@ 115,7 115,9 @@
                    "minimum": 1,
                    "maximum": 31
                },
                "max_brightness": {"$ref": "qmk.definitions.v1#/unsigned_int_8"},
                "pin": {"$ref": "qmk.definitions.v1#/mcu_pin"},
                "pins": {"$ref": "qmk.definitions.v1#/mcu_pin_array"},
                "on_state": {"$ref": "qmk.definitions.v1#/bit"}
            }
        },

M docs/reference_info_json.md => docs/reference_info_json.md +7 -0
@@ 132,8 132,15 @@ Enable by setting
    * The length of one backlight “breath” in seconds
* `levels`
    * The number of brightness levels (maximum 31, excluding off)
* `max_brightness`
    * The maximum duty cycle of the backlight LED(s) (0-255)
* `pin`
    * The pin that controls the backlight LED(s)
* `pins`
    * Array of pins that controls the backlight LED(s) (See [Multiple Backlight Pins](feature_backlight.md#multiple-backlight-pins))
* `on_state`
    * The state of the indicator pins when the LED is "on" - `1` for high, `0` for low
    * Default: `1`

Example:


M lib/python/qmk/info.py => lib/python/qmk/info.py +1 -1
@@ 451,7 451,7 @@ def _config_to_json(key_type, config_value):
        if array_type == 'int':
            return list(map(int, config_value.split(',')))
        else:
            return config_value.split(',')
            return list(map(str.strip, config_value.split(',')))

    elif key_type == 'bool':
        return config_value in true_values