/* * Hue.h * * Created: Sun Jan 29 2023 10:49:43 * Author Chris */ #ifndef HUE_H_ #define HUE_H_ // ============================================================================================ // Includes #include #include #include #include "pico/types.h" // ============================================================================================ // Defines #define HUE_MAX_ANGLE 360 // ============================================================================================ // Datatypes typedef uint Pixel_Value; // ============================================================================================ // Function Declarations Pixel_Value Hue_Get_Color_From_Angle(int hue_angle); #endif /* HUE_H_ */