led_ws2812b: minorx, fix comment

This commit is contained in:
King Kévin 2020-08-20 13:53:11 +02:00
parent 2f251e0ad7
commit 9b522b4228
1 changed files with 3 additions and 2 deletions

View File

@ -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);