Browse Source

fix example code in docs/feature_rgblight.md (#12960)

pull/12966/head
Takeshi ISHII 3 years ago
committed by GitHub
parent
commit
40f235a96c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      docs/feature_rgblight.md

+ 3
- 3
docs/feature_rgblight.md View File

@ -359,9 +359,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.
```


Loading…
Cancel
Save