GM6000 Digital Heater Controller Branch: main
SDX-1330
RedGreenBlue.h
Go to the documentation of this file.
1#ifndef Driver_LED_RedGreeBlue_h_
2#define Driver_LED_RedGreeBlue_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15#include <stdint.h>
16
17///
18namespace Driver {
19///
20namespace LED {
21
22/** This abstract class defines a basic interface for a single Red-Green-Blue
23 LED where the application can set the individual color values and the overall
24 brightness of the LED.
25 */
27{
28public:
29 /** This method is used to start the driver
30 */
31 virtual void start() noexcept = 0;
32
33 /** This method is used to stop the driver
34 */
35 virtual void stop() noexcept = 0;
36
37public:
38 /** This method is used to set the LED's color value/state by individual Red/Green/Blue color values
39 */
40 virtual void setRgb( uint8_t redValue, uint8_t greenValue, uint8_t blueValue ) noexcept = 0;
41
42 /** This method is used to set the LED's color value/state by Hue, Saturation, Value
43 */
44 virtual void setHsv( float hue, float saturation, float value ) noexcept = 0;
45
46 /** This method is used to set the LED's overall brightness
47 */
48 virtual void setBrightness( uint8_t brightness ) noexcept = 0;
49
50 /// Convenience method to turn the LED off
51 inline void setOff() { setRgb( 0, 0, 0 ); }
52
53public:
54 /// Virtual destructor to make the compiler happy
55 virtual ~RedGreenBlue(){}
56};
57
58} // End namespace(s)
59}
60
61/*--------------------------------------------------------------------------*/
62#endif // end header latch
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.
namespace