1#ifndef Driver_LED_RedGreeBlue_h_
2#define Driver_LED_RedGreeBlue_h_
31 virtual void start() noexcept = 0;
35 virtual
void stop() noexcept = 0;
40 virtual
void setRgb( uint8_t redValue, uint8_t greenValue, uint8_t blueValue ) noexcept = 0;
44 virtual
void setHsv(
float hue,
float saturation,
float value ) noexcept = 0;
This abstract class defines a basic interface for a single Red-Green-Blue LED where the application c...
Definition RedGreenBlue.h:27
void setOff()
Convenience method to turn the LED off.
Definition RedGreenBlue.h:51
virtual void setBrightness(uint8_t brightness) noexcept=0
This method is used to set the LED's overall brightness.
virtual void start() noexcept=0
This method is used to start the driver.
virtual void setRgb(uint8_t redValue, uint8_t greenValue, uint8_t blueValue) noexcept=0
This method is used to set the LED's color value/state by individual Red/Green/Blue color values.
virtual ~RedGreenBlue()
Virtual destructor to make the compiler happy.
Definition RedGreenBlue.h:55
virtual void setHsv(float hue, float saturation, float value) noexcept=0
This method is used to set the LED's color value/state by Hue, Saturation, Value.
virtual void stop() noexcept=0
This method is used to stop the driver.