FastLED 3.9.15
Loading...
Searching...
No Matches
P9813Controller< DATA_PIN, CLOCK_PIN, RGB_ORDER, SPI_SPEED > Class Template Reference

Detailed Description

template<uint8_t DATA_PIN, uint8_t CLOCK_PIN, EOrder RGB_ORDER = RGB, uint32_t SPI_SPEED = DATA_RATE_MHZ(10)>
class P9813Controller< DATA_PIN, CLOCK_PIN, RGB_ORDER, SPI_SPEED >

P9813 controller class.

Template Parameters
DATA_PINthe data pin for these LEDs
CLOCK_PINthe clock pin for these LEDs
RGB_ORDERthe RGB ordering for these LEDs
SPI_SPEEDthe clock divider used for these LEDs. Set using the DATA_RATE_MHZ / DATA_RATE_KHZ macros. Defaults to DATA_RATE_MHZ(10)

Definition at line 639 of file chipsets.h.

#include <chipsets.h>

+ Inheritance diagram for P9813Controller< DATA_PIN, CLOCK_PIN, RGB_ORDER, SPI_SPEED >:
+ Collaboration diagram for P9813Controller< DATA_PIN, CLOCK_PIN, RGB_ORDER, SPI_SPEED >:

Public Member Functions

 P9813Controller ()
 
virtual void init ()
 Initialize the LED controller.
 
- Public Member Functions inherited from CPixelLEDController< RGB >
 CPixelLEDController ()
 
int lanes () override
 Get the number of lanes of the Controller.
 
virtual void showPixels (PixelController< RGB_ORDER, 1, 0xFFFFFFFF > &pixels)=0
 Send the LED data to the strip.
 
- Public Member Functions inherited from CLEDController
 CLEDController ()
 Create an led controller object, add it to the chain of controllers.
 
VIRTUAL_IF_NOT_AVR ~CLEDController ()
 
virtual void * beginShowLeds (int size)
 
void clearLedDataInternal (int nLeds=-1)
 Zero out the LED data managed by this controller.
 
VIRTUAL_IF_NOT_AVR void clearLeds (int nLeds=-1)
 Clear out/zero out the given number of LEDs.
 
virtual void endShowLeds (void *data)
 
CRGB getAdjustment (uint8_t scale)
 Get the combined brightness/color adjustment for this controller.
 
ColorAdjustment getAdjustmentData (uint8_t brightness)
 
CRGB getCorrection ()
 Get the correction value used by this controller.
 
uint8_t getDither ()
 Get the dithering option currently set for this controller.
 
bool getEnabled ()
 
virtual uint16_t getMaxRefreshRate () const
 Gets the maximum possible refresh rate of the strip.
 
Rgbw getRgbw () const
 
CRGB getTemperature ()
 Get the color temperature, aka white point, for this controller.
 
CRGBleds ()
 Pointer to the CRGB array for this controller.
 
CLEDControllernext ()
 Get the next controller in the linked list after this one.
 
CRGBoperator[] (int x)
 Reference to the n'th LED managed by the controller.
 
CLEDControllersetCorrection (CRGB correction)
 The color corrction to use for this controller, expressed as a CRGB object.
 
CLEDControllersetCorrection (LEDColorCorrection correction)
 The color corrction to use for this controller, expressed as a CRGB object.
 
CLEDControllersetDither (uint8_t ditherMode=BINARY_DITHER)
 Set the dithering mode for this controller to use.
 
void setEnabled (bool enabled)
 
CLEDControllersetLeds (CRGB *data, int nLeds)
 Set the default array of LEDs to be used by this controller.
 
CLEDControllersetRgbw (const Rgbw &arg=RgbwDefault::value())
 
CLEDControllersetScreenMap (const fl::ScreenMap &map)
 
CLEDControllersetScreenMap (const fl::XYMap &map)
 
CLEDControllersetScreenMap (uint16_t width, uint16_t height)
 
CLEDControllersetTemperature (ColorTemperature temperature)
 Set the color temperature, aka white point, for this controller.
 
CLEDControllersetTemperature (CRGB temperature)
 Set the color temperature, aka white point, for this controller.
 
void showColorInternal (const struct CRGB &data, int nLeds, uint8_t brightness)
 
void showColorInternal (const struct CRGB &data, uint8_t brightness)
 
void showInternal (const struct CRGB *data, int nLeds, uint8_t brightness)
 
VIRTUAL_IF_NOT_AVR void showLeds (uint8_t brightness)
 
void showLedsInternal (uint8_t brightness)
 Write the data to the LEDs managed by this controller.
 
virtual int size ()
 How many LEDs does this controller manage?
 

Protected Member Functions

virtual void showPixels (PixelController< RGB_ORDER > &pixels)
 Send the LED data to the strip.
 
- Protected Member Functions inherited from CPixelLEDController< RGB >
virtual void show (const struct CRGB *data, int nLeds, uint8_t brightness) override
 Write the passed in RGB data out to the LEDs managed by this controller.
 
virtual void showColor (const CRGB &data, int nLeds, uint8_t brightness) override
 Set all the LEDs on the controller to a given color.
 

Private Types

typedef SPIOutput< DATA_PIN, CLOCK_PIN, SPI_SPEED > SPI
 

Private Member Functions

void writeBoundary ()
 
FASTLED_FORCE_INLINE void writeLed (uint8_t r, uint8_t g, uint8_t b)
 

Private Attributes

SPI mSPI
 

Additional Inherited Members

- Static Public Member Functions inherited from CLEDController
static CLEDControllerhead ()
 Get the first LED controller in the linked list of controllers.
 
- Public Attributes inherited from CLEDController
Rgbw mRgbMode = RgbwInvalid::value()
 
- Static Public Attributes inherited from CPixelLEDController< RGB >
static const int LANES_VALUE
 The number of lanes for this controller.
 
static const uint32_t MASK_VALUE
 The mask for the lanes for this controller.
 
static const EOrder RGB_ORDER_VALUE
 The RGB ordering for this controller.
 
- Protected Attributes inherited from CLEDController
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()
 
CRGBm_Data
 pointer to the LED data used by this controller
 
EDitherMode m_DitherMode
 the current dither mode of the controller
 
bool m_enabled = true
 
int m_nLeds
 the number of LEDs in the LED data array
 
CLEDControllerm_pNext
 pointer to the next LED controller in the linked list
 
- Static Protected Attributes inherited from CLEDController
static CLEDControllerm_pHead = NULL
 pointer to the first LED controller in the linked list
 
static CLEDControllerm_pTail = NULL
 pointer to the last LED controller in the linked list
 

The documentation for this class was generated from the following file: