2016-06-27 22:43:35 +02:00
|
|
|
#include "LedDeviceSk6812SPI.h"
|
|
|
|
|
2016-10-13 21:59:58 +02:00
|
|
|
LedDeviceSk6812SPI::LedDeviceSk6812SPI(const QJsonObject &deviceConfig)
|
2016-10-08 08:14:36 +02:00
|
|
|
: ProviderSpi()
|
|
|
|
, _whiteAlgorithm(RGBW::INVALID)
|
2016-08-13 19:54:08 +02:00
|
|
|
, bitpair_to_byte {
|
2016-06-27 22:43:35 +02:00
|
|
|
0b10001000,
|
|
|
|
0b10001100,
|
|
|
|
0b11001000,
|
|
|
|
0b11001100,
|
|
|
|
}
|
|
|
|
{
|
2016-10-08 08:14:36 +02:00
|
|
|
_deviceReady = init(deviceConfig);
|
2016-08-23 20:07:12 +02:00
|
|
|
}
|
|
|
|
|
2016-10-13 21:59:58 +02:00
|
|
|
LedDevice* LedDeviceSk6812SPI::construct(const QJsonObject &deviceConfig)
|
2016-08-23 20:07:12 +02:00
|
|
|
{
|
|
|
|
return new LedDeviceSk6812SPI(deviceConfig);
|
|
|
|
}
|
|
|
|
|
2016-10-13 21:59:58 +02:00
|
|
|
bool LedDeviceSk6812SPI::init(const QJsonObject &deviceConfig)
|
2016-08-23 20:07:12 +02:00
|
|
|
{
|
2016-10-13 21:59:58 +02:00
|
|
|
std::string whiteAlgorithm = deviceConfig["white_algorithm"].toString("white_off").toStdString();
|
2016-10-08 08:14:36 +02:00
|
|
|
_whiteAlgorithm = RGBW::stringToWhiteAlgorithm(whiteAlgorithm);
|
2016-09-04 14:28:06 +02:00
|
|
|
|
2016-10-08 08:14:36 +02:00
|
|
|
if (_whiteAlgorithm == RGBW::INVALID)
|
|
|
|
{
|
|
|
|
Error(_log, "unknown whiteAlgorithm %s", whiteAlgorithm.c_str());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
Debug( _log, "whiteAlgorithm : %s", whiteAlgorithm.c_str());
|
2016-08-23 20:07:12 +02:00
|
|
|
|
2016-10-08 08:14:36 +02:00
|
|
|
_baudRate_Hz = 3000000;
|
|
|
|
if ( !ProviderSpi::init(deviceConfig) )
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const int SPI_BYTES_PER_COLOUR = 4;
|
|
|
|
const int SPI_FRAME_END_LATCH_BYTES = 3;
|
|
|
|
_ledBuffer.resize(_ledRGBWCount * SPI_BYTES_PER_COLOUR + SPI_FRAME_END_LATCH_BYTES, 0x00);
|
|
|
|
|
2016-08-23 20:07:12 +02:00
|
|
|
return true;
|
2016-06-27 22:43:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int LedDeviceSk6812SPI::write(const std::vector<ColorRgb> &ledValues)
|
|
|
|
{
|
|
|
|
unsigned spi_ptr = 0;
|
2016-10-08 08:14:36 +02:00
|
|
|
static const int SPI_BYTES_PER_LED = 4;
|
2016-07-10 17:07:19 +02:00
|
|
|
|
2016-09-23 08:49:22 +02:00
|
|
|
for (const ColorRgb& color : ledValues)
|
|
|
|
{
|
2016-10-08 08:14:36 +02:00
|
|
|
RGBW::Rgb_to_Rgbw(color, &_temp_rgbw, _whiteAlgorithm);
|
2016-06-27 22:43:35 +02:00
|
|
|
uint32_t colorBits =
|
2016-07-10 17:07:19 +02:00
|
|
|
((uint32_t)_temp_rgbw.red << 24) +
|
|
|
|
((uint32_t)_temp_rgbw.green << 16) +
|
|
|
|
((uint32_t)_temp_rgbw.blue << 8) +
|
|
|
|
_temp_rgbw.white;
|
2016-06-27 22:43:35 +02:00
|
|
|
|
|
|
|
for (int j=SPI_BYTES_PER_LED - 1; j>=0; j--) {
|
2016-08-14 10:46:44 +02:00
|
|
|
_ledBuffer[spi_ptr+j] = bitpair_to_byte[ colorBits & 0x3 ];
|
2016-06-27 22:43:35 +02:00
|
|
|
colorBits >>= 2;
|
|
|
|
}
|
|
|
|
spi_ptr += SPI_BYTES_PER_LED;
|
2016-09-23 08:49:22 +02:00
|
|
|
}
|
|
|
|
|
2016-08-14 10:46:44 +02:00
|
|
|
_ledBuffer[spi_ptr++] = 0;
|
|
|
|
_ledBuffer[spi_ptr++] = 0;
|
|
|
|
_ledBuffer[spi_ptr++] = 0;
|
2016-06-27 22:43:35 +02:00
|
|
|
|
2016-10-08 08:14:36 +02:00
|
|
|
return writeBytes(_ledBuffer.size(), _ledBuffer.data());
|
2016-06-27 22:43:35 +02:00
|
|
|
}
|