From 7f3c76d0c19736347c17aa7d865f6032b4dafc44 Mon Sep 17 00:00:00 2001 From: "regicidal.plutophage" <36969337+regicidalplutophage@users.noreply.github.com> Date: Sat, 19 Oct 2024 12:41:46 +0300 Subject: [PATCH] Fix an error in rgb.md (#1037) * Fix an error in rgb.md --------- Co-authored-by: xs5871 <60395129+xs5871@users.noreply.github.com> --- docs/en/rgb.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/rgb.md b/docs/en/rgb.md index 656a84ac6..19e905711 100644 --- a/docs/en/rgb.md +++ b/docs/en/rgb.md @@ -76,7 +76,7 @@ If you want to create your own animations, or for example, change the lighting i |--------------------------------------------------|--------------------------------------------------------------------------------------------| |`rgb.set_hsv_fill(hue, sat, val)` |Fills all LED's with HSV values | |`rgb.set_hsv(hue, sat, val, index)` |Sets a single LED with HSV value | -|`rgb.set_rgb_fill((r, g, b))` |Fills all LED's with RGB(W) values | +|`rgb.set_rgb_fill(r, g, b)` |Fills all LED's with RGB(W) values | |`rgb.set_rgb((r, g, b), index)` |Set's a single LED with RGB(W) values | |`rgb.increase_hue(step)` |Increases hue by a given step | |`rgb.decrease_hue(step)` |Decreases hue by a given step |