1
0
Fork 0

Add support for hsv->rgb conversion without using CIE curve. (#9856)

* Add support for hsv->rgb conversion without using CIE curve.

* Modify anavi/macropad8 to disable unicode (was unused), otherwise firmware size is too large.
This commit is contained in:
Nick Brassel 2020-08-05 15:11:06 +10:00 committed by James Young
parent 200444f8d2
commit c990dc1e6c
3 changed files with 24 additions and 4 deletions

View file

@ -64,6 +64,7 @@ typedef struct PACKED {
#endif
RGB hsv_to_rgb(HSV hsv);
RGB hsv_to_rgb_nocie(HSV hsv);
#ifdef RGBW
void convert_rgb_to_rgbw(LED_TYPE *led);
#endif