From 9b522b4228a1b0976f9078b549d2e94934653cf7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?King=20K=C3=A9vin?= Date: Thu, 20 Aug 2020 13:53:11 +0200 Subject: [PATCH] led_ws2812b: minorx, fix comment --- lib/led_ws2812b.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/led_ws2812b.h b/lib/led_ws2812b.h index 67426c1..ada608d 100644 --- a/lib/led_ws2812b.h +++ b/lib/led_ws2812b.h @@ -10,13 +10,14 @@ /** number of LEDs on the WS2812B strip */ #define LED_WS2812B_LEDS 48 -/** setup WS2812B LED driver */ +/** setup WS2812B LED driver + * @note this starts the continuous transmission + */ void led_ws2812b_setup(void); /** set color of a single LED * @param[in] led the LED number to set the color * @param[in] red the red color value to set on the LED * @param[in] green the green color value to set on the LED * @param[in] blue the blue color value to set on the LED - * @note transmission needs to be done separately */ void led_ws2812b_set_rgb(uint16_t led, uint8_t red, uint8_t green, uint8_t blue);