23#ifndef _COLOR_HUE_STRATEGY_H
24#define _COLOR_HUE_STRATEGY_H
Virtual base class for all ColorHueStrategies.
Definition ColorHueStrategy.h:37
virtual bool setColorLoop(bool on, Light &light) const =0
Virtual function for turning on/off the color loop feature of a light.
virtual bool alertHueSaturation(const HueSaturation &hueSat, Light &light) const =0
Virtual function that lets the light perform one breath cycle in the specified color.
virtual XYBrightness getColorXY(Light &light) const =0
Virtual function that returns the current color of the light as xy.
virtual HueSaturation getColorHueSaturation(Light &light) const =0
Virtual function that returns the current color of the light as hue and saturation.
virtual HueSaturation getColorHueSaturation(const Light &light) const =0
Virtual function that returns the current color of the light as hue and saturation.
virtual XYBrightness getColorXY(const Light &light) const =0
Virtual function that returns the current color of the light as xy.
virtual bool alertXY(const XYBrightness &xy, Light &light) const =0
Virtual function that lets the light perform one breath cycle in the specified color.
virtual bool setColorXY(const XYBrightness &xy, uint8_t transition, Light &light) const =0
Virtual function for changing a lights color in CIE format with a specified transition.
virtual bool setColorSaturation(uint8_t sat, uint8_t transition, Light &light) const =0
Virtual function for changing a lights color in saturation with a specified transition.
virtual bool setColorHue(uint16_t hue, uint8_t transition, Light &light) const =0
Virtual function for changing a lights color in hue with a specified transition.
virtual bool setColorHueSaturation(const HueSaturation &hueSat, uint8_t transition, Light &light) const =0
Virtual function for changing a lights color in hue and saturation format with a specified transition...
virtual ~ColorHueStrategy()=default
Virtual dtor.
Class for Hue Light fixtures.
Definition Light.h:61
Namespace for the hueplusplus library.
Definition Action.h:28
Color in hue and saturation.
Definition ColorUnits.h:32
Color and brightness in CIE.
Definition ColorUnits.h:63