![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This abstract class defines a basic interface for a single Red-Green-Blue LED where the application can set the individual color values and the overall brightness of the LED. More...
This abstract class defines a basic interface for a single Red-Green-Blue LED where the application can set the individual color values and the overall brightness of the LED.
#include <RedGreenBlue.h>
Public Member Functions | |
virtual void | start () noexcept=0 |
This method is used to start the driver. | |
virtual void | stop () noexcept=0 |
This method is used to stop 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 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 | setBrightness (uint8_t brightness) noexcept=0 |
This method is used to set the LED's overall brightness. | |
void | setOff () |
Convenience method to turn the LED off. | |
virtual | ~RedGreenBlue () |
Virtual destructor to make the compiler happy. | |
|
inlinevirtual |
Virtual destructor to make the compiler happy.
|
pure virtualnoexcept |
This method is used to set the LED's overall brightness.
Implemented in Driver::LED::Pimoroni::RedGreenBlue, and Driver::LED::TPipe::RedGreeBlue.
|
pure virtualnoexcept |
This method is used to set the LED's color value/state by Hue, Saturation, Value.
Implemented in Driver::LED::Pimoroni::RedGreenBlue, and Driver::LED::TPipe::RedGreeBlue.
|
inline |
Convenience method to turn the LED off.
|
pure virtualnoexcept |
This method is used to set the LED's color value/state by individual Red/Green/Blue color values.
Implemented in Driver::LED::Pimoroni::RedGreenBlue, and Driver::LED::TPipe::RedGreeBlue.
|
pure virtualnoexcept |
This method is used to start the driver.
Implemented in Driver::LED::Pimoroni::RedGreenBlue, and Driver::LED::TPipe::RedGreeBlue.
|
pure virtualnoexcept |
This method is used to stop the driver.
Implemented in Driver::LED::Pimoroni::RedGreenBlue, and Driver::LED::TPipe::RedGreeBlue.