GM6000 Digital Heater Controller Branch: main
SDX-1330
RedGreenBlue.h
Go to the documentation of this file.
1#ifndef Driver_LED_TPipe_RedGreeBlue_h_
2#define Driver_LED_TPipe_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
16#include "Driver/TPipe/Tx.h"
17#include "Cpl/Text/format.h"
18#include "Cpl/Text/FString.h"
20
21/// Size of my string work buffer (not including the null terminator)
22#define DRIVER_LED_TPIPE_WORK_BUFFER_SIZE 128
23
24///
25namespace Driver {
26///
27namespace LED {
28///
29namespace TPipe {
30
31
32/** This concrete class implements the Red-Green-Blue LED interface by sending
33 the LED state over the TPipe to an external client. The driver assumes the
34 following TPipe command format (without leading/trailing SOF/EOF framing characters)
35
36 \code
37
38 <DD> <HH:MM:SS.sss> writeRGBLed <led> <r> <g> <b> <bright>
39 Where:
40 <DD> is CPU time since power-up/reset: Format is: DD HH:MM:SS.sss
41 <HH:MM:SS.sss> is CPU time since power-up/reset: Format is: DD HH:MM:SS.sss
42 <led> LED identifier/label (with no whitespace allowed)
43 <r> The 'Red' value (0-255) for the RGB LED
44 <g> The 'Green' value (0-255) for the RGB LED
45 <b> The 'Blue' value (0-255) for the RGB LED
46 <bright> Overall brightness for the LED (0-255)
47
48 \endcode
49 */
51{
52public:
53 /// Constructor
54 RedGreeBlue( Driver::TPipe::Tx& tpipeTransmitter, const char* ledLabel )
55 : m_tpipe( tpipeTransmitter )
56 , m_ledLabel( ledLabel )
57 {
58 }
59
60public:
61 /// See Driver::LED::RedGreeBlue
62 void start() noexcept
63 {
64 // Nothing needed
65 }
66
67 /// See Driver::LED::RedGreeBlue
68 void stop() noexcept
69 {
70 // Nothing needed
71 }
72
73 /// See Driver::LED::RedGreeBlue
74 void setRgb( uint8_t redValue, uint8_t greenValue, uint8_t blueValue ) noexcept
75 {
76 m_red = redValue;
77 m_green = greenValue;
78 m_blue = blueValue;
79 sendData();
80 }
81
82 /// See Driver::LED::RedGreeBlue
83 void setHsv( float hue, float saturation, float value ) noexcept
84 {
85 // TODO: Need to support
86 printf( "Driver::LED::RedGreenBlue::setHsv() NOT SUPPORTED.\n" );
87 }
88
89
90 /// See Driver::LED::RedGreeBlue
91 void setBrightness( uint8_t brightness ) noexcept
92 {
93 m_bright = brightness;
94 sendData();
95 }
96
97
98protected:
99 /// Helper method to update the LED state
100 inline void sendData()
101 {
103 formatMsecTimeStamp( tmp, Cpl::System::ElapsedTime::precision().asFlatTime() );
104 tmp.formatAppend( " writeRGBLed %s %u %u %u %u",
106 m_red,
107 m_green,
108 m_blue,
109 m_bright );
111 }
112
113protected:
114 /// Reference to the TPipe's transmit interface
116
117 /// Label/identifier of the LED
118 const char* m_ledLabel;
119
120 /// Red Value
121 uint8_t m_red;
122
123 /// Green Value
124 uint8_t m_green;
125
126 /// Blue Value
127 uint8_t m_blue;
128
129 /// Brightness
130 uint8_t m_bright;
131};
132
133} // End namespace(s)
134}
135}
136
137/*--------------------------------------------------------------------------*/
138#endif // end header latch
static Precision_T precision() noexcept
This method returns the elapsed time, in seconds with milliseconds precision, since the system was po...
This template class represents a NULL terminated string of a specific length.
Definition FString.h:38
void formatAppend(const char *format,...)
See Cpl::Text::String.
const char * getString() const
See Cpl::Text::String.
This abstract class defines a basic interface for a single Red-Green-Blue LED where the application c...
Definition RedGreenBlue.h:27
This concrete class implements the Red-Green-Blue LED interface by sending the LED state over the TPi...
Definition RedGreenBlue.h:51
uint8_t m_green
Green Value.
Definition RedGreenBlue.h:124
void sendData()
Helper method to update the LED state.
Definition RedGreenBlue.h:100
uint8_t m_bright
Brightness.
Definition RedGreenBlue.h:130
void start() noexcept
See Driver::LED::RedGreeBlue.
Definition RedGreenBlue.h:62
RedGreeBlue(Driver::TPipe::Tx &tpipeTransmitter, const char *ledLabel)
Constructor.
Definition RedGreenBlue.h:54
uint8_t m_blue
Blue Value.
Definition RedGreenBlue.h:127
void stop() noexcept
See Driver::LED::RedGreeBlue.
Definition RedGreenBlue.h:68
void setBrightness(uint8_t brightness) noexcept
See Driver::LED::RedGreeBlue.
Definition RedGreenBlue.h:91
Driver::TPipe::Tx & m_tpipe
Reference to the TPipe's transmit interface.
Definition RedGreenBlue.h:115
uint8_t m_red
Red Value.
Definition RedGreenBlue.h:121
void setHsv(float hue, float saturation, float value) noexcept
See Driver::LED::RedGreeBlue.
Definition RedGreenBlue.h:83
void setRgb(uint8_t redValue, uint8_t greenValue, uint8_t blueValue) noexcept
See Driver::LED::RedGreeBlue.
Definition RedGreenBlue.h:74
const char * m_ledLabel
Label/identifier of the LED.
Definition RedGreenBlue.h:118
This abstract class defines the 'Transmit Command' interface for the TPipe.
Definition Tx.h:27
virtual bool sendCommand(const char *completeCommandText, size_t numBytes) noexcept=0
Synchronously transmits a complete 'text command'.
This file contains some general purpose string formatting functions.
namespace