|
upm
1.6.0
Sensor/Actuator repository for libmraa (v1.9.0)
|
API for controlling APA102/DotStar RGB LED Strips. More...
APA102 LED Strips provide individually controllable LEDs through a SPI interface. For each LED, brightness (0-31) and RGB (0-255) values can be set.
Public Member Functions | |
| APA102 (uint16_t ledCount, uint8_t spiBus, bool batchMode=false, int8_t csn=-1) | |
| ~APA102 () | |
| void | setLed (uint16_t ledIdx, uint8_t brightness, uint8_t r, uint8_t g, uint8_t b) |
| void | setLedBrightness (uint16_t ledIdx, uint8_t brightness) |
| void | setAllLeds (uint8_t brightness, uint8_t r, uint8_t g, uint8_t b) |
| void | setLeds (uint16_t startIdx, uint16_t endIdx, uint8_t brightness, uint8_t r, uint8_t g, uint8_t b) |
| void | setLedsBrightness (uint16_t startIdx, uint16_t endIdx, uint8_t brightness) |
| void | setLeds (uint16_t startIdx, uint16_t endIdx, uint8_t *colors) |
| void | setBusSpeed (int hz) |
| void | pushState () |
| APA102 | ( | uint16_t | ledCount, |
| uint8_t | spiBus, | ||
| bool | batchMode = false, |
||
| int8_t | csn = -1 |
||
| ) |
| void setLed | ( | uint16_t | ledIdx, |
| uint8_t | brightness, | ||
| uint8_t | r, | ||
| uint8_t | g, | ||
| uint8_t | b | ||
| ) |
Change the color and brightness for a single led
| ledIdx | Index of the LED in the strip (0 based) |
| brightness | Brightness value (0-31) |
| r | Red component (0-255) |
| g | Green component (0-255) |
| b | Blue component (0-255) |

| void setLedBrightness | ( | uint16_t | ledIdx, |
| uint8_t | brightness | ||
| ) |
Change the brightness for a single led
| ledIdx | Index of the LED in the strip (0 based) |
| brightness | Brightness value (0-31) |

| void setAllLeds | ( | uint8_t | brightness, |
| uint8_t | r, | ||
| uint8_t | g, | ||
| uint8_t | b | ||
| ) |
Change the color and brightness for all leds
| brightness | Brightness value (0-31) |
| r | Red component (0-255) |
| g | Green component (0-255) |
| b | Blue component (0-255) |

| void setLeds | ( | uint16_t | startIdx, |
| uint16_t | endIdx, | ||
| uint8_t | brightness, | ||
| uint8_t | r, | ||
| uint8_t | g, | ||
| uint8_t | b | ||
| ) |
Change the color and brightness for a range of leds
| startIdx | Start index of the range of LEDs in the strip (0 based) |
| endIdx | End index of the range of LEDs in the strip (0 based) |
| brightness | Brightness value (0-31) |
| r | Red component (0-255) |
| g | Green component (0-255) |
| b | Blue component (0-255) |


| void setLedsBrightness | ( | uint16_t | startIdx, |
| uint16_t | endIdx, | ||
| uint8_t | brightness | ||
| ) |
Change the brightness for a range of leds
| startIdx | Start index of the range of LEDs in the strip (0 based) |
| endIdx | End index of the range of LEDs in the strip (0 based) |
| brightness | Brightness value (0-31) |


| void setLeds | ( | uint16_t | startIdx, |
| uint16_t | endIdx, | ||
| uint8_t * | colors | ||
| ) |
(Advanced) Manually control the colors and brightness of a range of LEDS Best used to maximize performance
| startIdx | Start index of the range of LEDs to update (0 based) |
| endIdx | End index of the range of LEDs to update (0 based) |
| colors | Pointer to an array of bytes. Each color is described as the following: B1: Brightness (224-255) B2: Blue (0-255) B3: Green (0-255) B4: Red (0-255) No check done on the boundaries |

| void setBusSpeed | ( | int | hz | ) |
Change the speed/frequency of the SPI bus Note: Slower speeds will allow driving longer strips without having to condition the clock signal with extra hardware
| hz | Desired bus speed in Hz |
| void pushState | ( | void | ) |
Outputs the current LED data to the SPI bus Note: Only required if batch mode is set to TRUE

1.8.11