GM6000 Digital Heater Controller Branch: main
SDX-1330
RedGreenBlue.h
Go to the documentation of this file.
1#ifndef Driver_LED_Pimoroni_RedGreeBlue_h_
2#define Driver_LED_Pimoroni_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 "rgbled.hpp"
16#include "pimoroni_common.hpp"
18#include "Driver/DIO/Pwm.h"
19
20///
21namespace Driver {
22///
23namespace LED {
24///
25namespace Pimoroni {
26
27/** This concrete class is wrapper to the GENERIC pimoroni RGBLED class
28 */
29class RedGreenBlue: public Driver::LED::RedGreenBlue, public pimoroni::RGBLED
30{
31public:
32 /// Constructor
33 RedGreenBlue( Driver::DIO::Pwm& pin_r, Driver::DIO::Pwm& pin_g, Driver::DIO::Pwm& pin_b, pimoroni::Polarity polarity=pimoroni::Polarity::ACTIVE_LOW, uint8_t brightness=255 )
34 : pimoroni::RGBLED( pin_r, pin_g, pin_b, polarity, brightness )
35 {
36 }
37
38public:
39 /// See Driver::LED::RedGreeBlue
40 void start() noexcept
41 {
42 RGBLED::startDriver();
43 }
44
45 /// See Driver::LED::RedGreeBlue
46 void stop() noexcept
47 {
48 RGBLED::stopDriver();
49 }
50
51 /// See Driver::LED::RedGreeBlue
52 void setRgb( uint8_t redValue, uint8_t greenValue, uint8_t blueValue ) noexcept
53 {
54 set_rgb( redValue, greenValue, blueValue );
55 }
56
57 /// See Driver::LED::RedGreeBlue
58 void setHsv( float hue, float saturation, float value ) noexcept
59 {
60 set_hsv( hue, saturation, value );
61 }
62
63 /// See Driver::LED::RedGreeBlue
64 void setBrightness( uint8_t brightness ) noexcept
65 {
66 set_brightness( brightness );
67 }
68};
69
70} // End namespace(s)
71}
72}
73
74/*--------------------------------------------------------------------------*/
75#endif // end header latch
This class defines a generic interface for controlling a simple PWM output signal.
Definition Pwm.h:35
This concrete class is wrapper to the GENERIC pimoroni RGBLED class.
Definition RedGreenBlue.h:30
void stop() noexcept
See Driver::LED::RedGreeBlue.
Definition RedGreenBlue.h:46
void setRgb(uint8_t redValue, uint8_t greenValue, uint8_t blueValue) noexcept
See Driver::LED::RedGreeBlue.
Definition RedGreenBlue.h:52
void setHsv(float hue, float saturation, float value) noexcept
See Driver::LED::RedGreeBlue.
Definition RedGreenBlue.h:58
RedGreenBlue(Driver::DIO::Pwm &pin_r, Driver::DIO::Pwm &pin_g, Driver::DIO::Pwm &pin_b, pimoroni::Polarity polarity=pimoroni::Polarity::ACTIVE_LOW, uint8_t brightness=255)
Constructor.
Definition RedGreenBlue.h:33
void setBrightness(uint8_t brightness) noexcept
See Driver::LED::RedGreeBlue.
Definition RedGreenBlue.h:64
void start() noexcept
See Driver::LED::RedGreeBlue.
Definition RedGreenBlue.h:40
This abstract class defines a basic interface for a single Red-Green-Blue LED where the application c...
Definition RedGreenBlue.h:27
namespace