Pico Led Controller 1.0.3
A project to control LEDs using Raspberry Pi Pico W
hsv.h
Go to the documentation of this file.
1 #ifndef _HSV_H
2 #define _HSV_H
3 
4 #include <stdint.h>
5 
14 uint32_t hsv_to_rgb(uint16_t h, uint8_t s, uint8_t v);
15 
16 #endif
uint32_t hsv_to_rgb(uint16_t h, uint8_t s, uint8_t v)
Convert HSV to RGB.
Definition: hsv.c:5