FastLED 3.9.3
|
Template extension of the CLEDController class.
RGB_ORDER | the rgb ordering for the LEDs (e.g. what order red, green, and blue data is written out in) |
LANES | how many parallel lanes of output to write |
MASK | bitmask for the output lanes |
Definition at line 26 of file cpixel_ledcontroller.h.
#include <cpixel_ledcontroller.h>
Public Member Functions | |
virtual void | showPixels (PixelController< RGB_ORDER, LANES, MASK > &pixels)=0 |
Send the LED data to the strip. | |
int | lanes () |
Get the number of lanes of the Controller. | |
Public Member Functions inherited from CLEDController | |
CLEDController & | setRgbw (const Rgbw &arg=RgbwDefault::value()) |
Rgbw | getRgbw () const |
CLEDController () | |
Create an led controller object, add it to the chain of controllers. | |
virtual void | init ()=0 |
Initialize the LED controller. | |
virtual void | clearLeds (int nLeds=-1) |
Clear out/zero out the given number of LEDs. | |
ColorAdjustment | getAdjustmentData (uint8_t brightness) |
void | showInternal (const struct CRGB *data, int nLeds, uint8_t brightness) |
void | showColorInternal (const struct CRGB &data, int nLeds, uint8_t brightness) |
void | showLedsInternal (uint8_t brightness) |
Write the data to the LEDs managed by this controller. | |
void | showColorInternal (const struct CRGB &data, uint8_t brightness) |
CLEDController * | next () |
Get the next controller in the linked list after this one. | |
CLEDController & | setLeds (CRGB *data, int nLeds) |
Set the default array of LEDs to be used by this controller. | |
void | clearLedDataInternal (int nLeds=-1) |
Zero out the LED data managed by this controller. | |
virtual int | size () |
How many LEDs does this controller manage? | |
CRGB * | leds () |
Pointer to the CRGB array for this controller. | |
CRGB & | operator[] (int x) |
Reference to the n'th LED managed by the controller. | |
CLEDController & | setDither (uint8_t ditherMode=BINARY_DITHER) |
Set the dithering mode for this controller to use. | |
CLEDController & | setScreenMap (const XYMap &map) |
CLEDController & | setScreenMap (const ScreenMap &map) |
CLEDController & | setScreenMap (uint16_t width, uint16_t height) |
uint8_t | getDither () |
Get the dithering option currently set for this controller. | |
virtual void * | beginShowLeds () |
virtual void | endShowLeds (void *data) |
CLEDController & | setCorrection (CRGB correction) |
The color corrction to use for this controller, expressed as a CRGB object. | |
CLEDController & | setCorrection (LEDColorCorrection correction) |
The color corrction to use for this controller, expressed as a CRGB object. | |
CRGB | getCorrection () |
Get the correction value used by this controller. | |
CLEDController & | setTemperature (CRGB temperature) |
Set the color temperature, aka white point, for this controller. | |
CLEDController & | setTemperature (ColorTemperature temperature) |
Set the color temperature, aka white point, for this controller. | |
CRGB | getTemperature () |
Get the color temperature, aka whipe point, for this controller. | |
CRGB | getAdjustment (uint8_t scale) |
Get the combined brightness/color adjustment for this controller. | |
virtual uint16_t | getMaxRefreshRate () const |
Gets the maximum possible refresh rate of the strip. | |
Static Public Attributes | |
static const EOrder | RGB_ORDER_VALUE = RGB_ORDER |
The RGB ordering for this controller. | |
static const int | LANES_VALUE = LANES |
The number of lanes for this controller. | |
static const uint32_t | MASK_VALUE = MASK |
The mask for the lanes for this controller. | |
Protected Member Functions | |
virtual void | showColor (const CRGB &data, int nLeds, uint8_t brightness) |
Set all the LEDs on the controller to a given color. | |
virtual void | show (const struct CRGB *data, int nLeds, uint8_t brightness) |
Write the passed in RGB data out to the LEDs managed by this controller. | |
Additional Inherited Members | |
Static Public Member Functions inherited from CLEDController | |
static CLEDController * | head () |
Get the first LED controller in the linked list of controllers. | |
Public Attributes inherited from CLEDController | |
Rgbw | mRgbMode = RgbwInvalid::value() |
Protected Attributes inherited from CLEDController | |
CRGB * | m_Data |
pointer to the LED data used by this controller | |
CLEDController * | m_pNext |
pointer to the next LED controller in the linked list | |
CRGB | m_ColorCorrection |
CRGB object representing the color correction to apply to the strip on show() | |
CRGB | m_ColorTemperature |
CRGB object representing the color temperature to apply to the strip on show() | |
EDitherMode | m_DitherMode |
the current dither mode of the controller | |
int | m_nLeds |
the number of LEDs in the LED data array | |
Static Protected Attributes inherited from CLEDController | |
static CLEDController * | m_pHead = NULL |
pointer to the first LED controller in the linked list | |
static CLEDController * | m_pTail = NULL |
pointer to the last LED controller in the linked list | |
|
inline |
Definition at line 61 of file cpixel_ledcontroller.h.
|
inlinevirtual |
Get the number of lanes of the Controller.
Reimplemented from CLEDController.
Definition at line 69 of file cpixel_ledcontroller.h.
|
inlineprotectedvirtual |
Write the passed in RGB data out to the LEDs managed by this controller.
data | the RGB data to write out to the strip |
nLeds | the number of LEDs being written out |
scale_pre_mixed | the RGB scaling of color adjustment + global brightness to apply to each LED (in RGB8 mode). |
Implements CLEDController.
Definition at line 47 of file cpixel_ledcontroller.h.
|
inlineprotectedvirtual |
Set all the LEDs on the controller to a given color.
data | the CRGB color to set the LEDs to |
nLeds | the number of LEDs to set to this color |
scale_pre_mixed | the RGB scaling of color adjustment + global brightness to apply to each LED (in RGB8 mode). |
Implements CLEDController.
Definition at line 34 of file cpixel_ledcontroller.h.
|
pure virtual |
Send the LED data to the strip.
pixels | the PixelController object for the LED data |
Implemented in RGBWEmulatedController< CONTROLLER, RGB_ORDER >.
|
static |
The number of lanes for this controller.
Definition at line 59 of file cpixel_ledcontroller.h.
|
static |
The mask for the lanes for this controller.
Definition at line 60 of file cpixel_ledcontroller.h.
|
static |
The RGB ordering for this controller.
Definition at line 58 of file cpixel_ledcontroller.h.