forked from forks/qmk_firmware
fix rgblight properties
This commit is contained in:
parent
56ef80216a
commit
9a178f6826
|
@ -173,9 +173,9 @@ def rgblight(config):
|
||||||
for json_key, config_key in rgblight_properties.items():
|
for json_key, config_key in rgblight_properties.items():
|
||||||
if json_key in config:
|
if json_key in config:
|
||||||
rgblight_config.append('')
|
rgblight_config.append('')
|
||||||
rgblight_config.append('#ifndef %s' % (config_key,))
|
rgblight_config.append('#ifndef %s' % (config_key[0],))
|
||||||
rgblight_config.append('# define %s %s' % (config_key, config[json_key]))
|
rgblight_config.append('# define %s %s' % (config_key[0], config[json_key]))
|
||||||
rgblight_config.append('#endif // %s' % (config_key,))
|
rgblight_config.append('#endif // %s' % (config_key[0],))
|
||||||
|
|
||||||
for json_key, config_key in rgblight_toggles.items():
|
for json_key, config_key in rgblight_toggles.items():
|
||||||
if config.get(json_key):
|
if config.get(json_key):
|
||||||
|
|
Loading…
Reference in a new issue