WPILibC++ 2023.4.3
|
A class for driving addressable LEDs, such as WS2812s and NeoPixels. More...
#include <frc/AddressableLED.h>
Classes | |
class | LEDData |
Public Member Functions | |
AddressableLED (int port) | |
Constructs a new driver for a specific port. More... | |
~AddressableLED () | |
void | SetLength (int length) |
Sets the length of the LED strip. More... | |
void | SetData (std::span< const LEDData > ledData) |
Sets the led output data. More... | |
void | SetData (std::initializer_list< LEDData > ledData) |
Sets the led output data. More... | |
void | SetBitTiming (units::nanosecond_t lowTime0, units::nanosecond_t highTime0, units::nanosecond_t lowTime1, units::nanosecond_t highTime1) |
Sets the bit timing. More... | |
void | SetSyncTime (units::microsecond_t syncTime) |
Sets the sync time. More... | |
void | Start () |
Starts the output. More... | |
void | Stop () |
Stops the output. More... | |
A class for driving addressable LEDs, such as WS2812s and NeoPixels.
Only 1 LED driver is currently supported by the roboRIO.
|
explicit |
Constructs a new driver for a specific port.
port | the output port to use (Must be a PWM header) |
frc::AddressableLED::~AddressableLED | ( | ) |
void frc::AddressableLED::SetBitTiming | ( | units::nanosecond_t | lowTime0, |
units::nanosecond_t | highTime0, | ||
units::nanosecond_t | lowTime1, | ||
units::nanosecond_t | highTime1 | ||
) |
Sets the bit timing.
By default, the driver is set up to drive WS2812s, so nothing needs to be set for those.
lowTime0 | low time for 0 bit |
highTime0 | high time for 0 bit |
lowTime1 | low time for 1 bit |
highTime1 | high time for 1 bit |
void frc::AddressableLED::SetData | ( | std::initializer_list< LEDData > | ledData | ) |
Sets the led output data.
If the output is enabled, this will start writing the next data cycle. It is safe to call, even while output is enabled.
ledData | the buffer to write |
void frc::AddressableLED::SetData | ( | std::span< const LEDData > | ledData | ) |
Sets the led output data.
If the output is enabled, this will start writing the next data cycle. It is safe to call, even while output is enabled.
ledData | the buffer to write |
void frc::AddressableLED::SetLength | ( | int | length | ) |
Sets the length of the LED strip.
Calling this is an expensive call, so its best to call it once, then just update data.
The max length is 5460 LEDs.
length | the strip length |
void frc::AddressableLED::SetSyncTime | ( | units::microsecond_t | syncTime | ) |
Sets the sync time.
The sync time is the time to hold output so LEDs enable. Default set for WS2812.
syncTime | the sync time |
void frc::AddressableLED::Start | ( | ) |
Starts the output.
The output writes continuously.
void frc::AddressableLED::Stop | ( | ) |
Stops the output.