diff options
| author | Joshua Diamond <josh@windowoffire.com> | 2021-01-09 23:00:12 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-09 20:00:12 -0800 |
| commit | 9d10c66cf08a97145a3a9caccd1092d1df3b226b (patch) | |
| tree | 88f2c4ddaf9be20b70e9bee6ddc30023328ac1a9 /docs | |
| parent | 6caef353a52e41336a2e76b8d260126d3b570e1b (diff) | |
| download | qmk_firmware-9d10c66cf08a97145a3a9caccd1092d1df3b226b.tar.gz qmk_firmware-9d10c66cf08a97145a3a9caccd1092d1df3b226b.zip | |
Correct descriptions of rgblight functions (#11429)
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/feature_rgblight.md | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/feature_rgblight.md b/docs/feature_rgblight.md index 762056b34..5455bb0bc 100644 --- a/docs/feature_rgblight.md +++ b/docs/feature_rgblight.md | |||
| @@ -368,14 +368,14 @@ rgblight_sethsv(HSV_GREEN, 2); // led 2 | |||
| 368 | |`rgblight_increase_hue_noeeprom()` |Increase the hue for effect range LEDs. This wraps around at maximum hue (not written to EEPROM) | | 368 | |`rgblight_increase_hue_noeeprom()` |Increase the hue for effect range LEDs. This wraps around at maximum hue (not written to EEPROM) | |
| 369 | |`rgblight_decrease_hue()` |Decrease the hue for effect range LEDs. This wraps around at minimum hue | | 369 | |`rgblight_decrease_hue()` |Decrease the hue for effect range LEDs. This wraps around at minimum hue | |
| 370 | |`rgblight_decrease_hue_noeeprom()` |Decrease the hue for effect range LEDs. This wraps around at minimum hue (not written to EEPROM) | | 370 | |`rgblight_decrease_hue_noeeprom()` |Decrease the hue for effect range LEDs. This wraps around at minimum hue (not written to EEPROM) | |
| 371 | |`rgblight_increase_sat()` |Increase the saturation for effect range LEDs. This wraps around at maximum saturation | | 371 | |`rgblight_increase_sat()` |Increase the saturation for effect range LEDs. This stops at maximum saturation | |
| 372 | |`rgblight_increase_sat_noeeprom()` |Increase the saturation for effect range LEDs. This wraps around at maximum saturation (not written to EEPROM) | | 372 | |`rgblight_increase_sat_noeeprom()` |Increase the saturation for effect range LEDs. This stops at maximum saturation (not written to EEPROM) | |
| 373 | |`rgblight_decrease_sat()` |Decrease the saturation for effect range LEDs. This wraps around at minimum saturation | | 373 | |`rgblight_decrease_sat()` |Decrease the saturation for effect range LEDs. This stops at minimum saturation | |
| 374 | |`rgblight_decrease_sat_noeeprom()` |Decrease the saturation for effect range LEDs. This wraps around at minimum saturation (not written to EEPROM) | | 374 | |`rgblight_decrease_sat_noeeprom()` |Decrease the saturation for effect range LEDs. This stops at minimum saturation (not written to EEPROM) | |
| 375 | |`rgblight_increase_val()` |Increase the value for effect range LEDs. This wraps around at maximum value | | 375 | |`rgblight_increase_val()` |Increase the value for effect range LEDs. This stops at maximum value | |
| 376 | |`rgblight_increase_val_noeeprom()` |Increase the value for effect range LEDs. This wraps around at maximum value (not written to EEPROM) | | 376 | |`rgblight_increase_val_noeeprom()` |Increase the value for effect range LEDs. This stops at maximum value (not written to EEPROM) | |
| 377 | |`rgblight_decrease_val()` |Decrease the value for effect range LEDs. This wraps around at minimum value | | 377 | |`rgblight_decrease_val()` |Decrease the value for effect range LEDs. This stops at minimum value | |
| 378 | |`rgblight_decrease_val_noeeprom()` |Decrease the value for effect range LEDs. This wraps around at minimum value (not written to EEPROM) | | 378 | |`rgblight_decrease_val_noeeprom()` |Decrease the value for effect range LEDs. This stops at minimum value (not written to EEPROM) | |
| 379 | |`rgblight_sethsv(h, s, v)` |Set effect range LEDs to the given HSV value where `h`/`s`/`v` are between 0 and 255 | | 379 | |`rgblight_sethsv(h, s, v)` |Set effect range LEDs to the given HSV value where `h`/`s`/`v` are between 0 and 255 | |
| 380 | |`rgblight_sethsv_noeeprom(h, s, v)` |Set effect range LEDs to the given HSV value where `h`/`s`/`v` are between 0 and 255 (not written to EEPROM) | | 380 | |`rgblight_sethsv_noeeprom(h, s, v)` |Set effect range LEDs to the given HSV value where `h`/`s`/`v` are between 0 and 255 (not written to EEPROM) | |
| 381 | 381 | ||
