1#ifndef Driver_LED_TPipe_RedGreeBlue_h_
2#define Driver_LED_TPipe_RedGreeBlue_h_
22#define DRIVER_LED_TPIPE_WORK_BUFFER_SIZE 128
74 void setRgb( uint8_t redValue, uint8_t greenValue, uint8_t blueValue )
noexcept
83 void setHsv(
float hue,
float saturation,
float value )
noexcept
86 printf(
"Driver::LED::RedGreenBlue::setHsv() NOT SUPPORTED.\n" );
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'.