From 1a17e19865a9ac6f9bba22771f616d564e06ade4 Mon Sep 17 00:00:00 2001 From: fauxpark Date: Thu, 20 May 2021 11:48:46 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20master=20@?= =?UTF-8?q?=2040f235a96c7f64822f6fb29b6aa7aab117689888=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- feature_rgblight.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/feature_rgblight.md b/feature_rgblight.md index d2612a6d1bb..79977b7aa17 100644 --- a/feature_rgblight.md +++ b/feature_rgblight.md @@ -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. ```