mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
3be4ebe6dc
Former-commit-id: dc3a3c7597af42b8fb37f09011d52ebacffd8959
42 lines
949 B
C++
42 lines
949 B
C++
|
|
// STL includes
|
|
#include <cstring>
|
|
#include <cstdio>
|
|
#include <iostream>
|
|
|
|
// Linux includes
|
|
#include <fcntl.h>
|
|
#include <sys/ioctl.h>
|
|
|
|
// hyperion local includes
|
|
#include "LedDeviceWs2801.h"
|
|
|
|
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();
|
|
|
|
const unsigned dataLen = ledValues.size() * sizeof(ColorRgb);
|
|
const uint8_t * dataPtr = reinterpret_cast<const uint8_t *>(ledValues.data());
|
|
|
|
return writeBytes(dataLen, dataPtr);
|
|
}
|
|
|
|
int LedDeviceWs2801::switchOff()
|
|
{
|
|
return write(std::vector<ColorRgb>(mLedCount, ColorRgb{0,0,0}));
|
|
}
|