added configurable latchtime for 2801 SPI driver

Former-commit-id: a10b0bd24a85580b021c735b30ebd2635180a514
This commit is contained in:
penfold42
2016-02-13 23:00:31 +11:00
parent 5387759287
commit ca24450618
3 changed files with 14 additions and 2 deletions

View File

@@ -11,13 +11,20 @@
// hyperion local includes
#include "LedDeviceWs2801.h"
LedDeviceWs2801::LedDeviceWs2801(const std::string& outputDevice, const unsigned baudrate) :
LedDeviceWs2801::LedDeviceWs2801(const std::string& outputDevice, const unsigned baudrate ) :
LedSpiDevice(outputDevice, baudrate, 500000),
mLedCount(0)
{
// empty
}
LedDeviceWs2801::LedDeviceWs2801(const std::string& outputDevice, const unsigned baudrate, const unsigned latchTime) :
LedSpiDevice(outputDevice, baudrate, latchTime),
mLedCount(0)
{
// empty
}
int LedDeviceWs2801::write(const std::vector<ColorRgb> &ledValues)
{
mLedCount = ledValues.size();