~ruther/qmk_firmware

de8fada3a3635f0fc6f1509ea2c0ac53ee880cf5 — QMK Bot 4 years ago aeaa209 + 40f235a
Merge remote-tracking branch 'origin/master' into develop
1 files changed, 3 insertions(+), 3 deletions(-)

M docs/feature_rgblight.md
M docs/feature_rgblight.md => docs/feature_rgblight.md +3 -3
@@ 372,9 372,9 @@ rgblight_set(); // Utility functions do not call rgblight_set() automatically, s

Example:
```c
rgblight_sethsv(HSV_WHITE, 0); // led 0
rgblight_sethsv(HSV_RED,   1); // led 1
rgblight_sethsv(HSV_GREEN, 2); // led 2
rgblight_sethsv_at(HSV_WHITE, 0); // led 0
rgblight_sethsv_at(HSV_RED,   1); // led 1
rgblight_sethsv_at(HSV_GREEN, 2); // led 2
// The above functions automatically calls rgblight_set(), so there is no need to call it explicitly.
// Note that it is inefficient to call repeatedly.
```