FastLED 3.9.15
Loading...
Searching...
No Matches
chsv.h
Go to the documentation of this file.
1
3
4#pragma once
5
6/*
7Legacy header. Prefer to use fl/hsv.h instead.
8*/
9#include "fl/gfx/hsv.h"
10// Backward compatibility: bring fl::hsv8 into global namespace as CHSV
11using CHSV = fl::hsv8;
12using fl::HSVHue;
13using fl::HUE_RED;
14using fl::HUE_ORANGE;
15using fl::HUE_YELLOW;
16using fl::HUE_GREEN;
17using fl::HUE_AQUA;
18using fl::HUE_BLUE;
19using fl::HUE_PURPLE;
20using fl::HUE_PINK;
fl::hsv8 CHSV
Definition chsv.h:11
HSVHue
Pre-defined hue values for hsv8 objects.
Definition hsv.h:97
@ HUE_BLUE
Blue (225°)
Definition hsv.h:103
@ HUE_RED
Red (0°)
Definition hsv.h:98
@ HUE_AQUA
Aqua (180°)
Definition hsv.h:102
@ HUE_PINK
Pink (315°)
Definition hsv.h:105
@ HUE_GREEN
Green (135°)
Definition hsv.h:101
@ HUE_YELLOW
Yellow (90°)
Definition hsv.h:100
@ HUE_ORANGE
Orange (45°)
Definition hsv.h:99
@ HUE_PURPLE
Purple (270°)
Definition hsv.h:104
Defines the hue, saturation, and value (HSV) pixel struct.
Representation of an HSV pixel (hue, saturation, value (aka brightness)).
Definition hsv.h:16