2016-05-15 18:39:17 +02:00
|
|
|
#include "LedDeviceWs2812SPI.h"
|
|
|
|
|
2016-10-13 21:59:58 +02:00
|
|
|
LedDeviceWs2812SPI::LedDeviceWs2812SPI(const QJsonObject &deviceConfig)
|
2016-09-23 08:49:22 +02:00
|
|
|
: ProviderSpi()
|
2016-08-13 19:54:08 +02:00
|
|
|
, bitpair_to_byte {
|
2016-05-22 12:56:44 +02:00
|
|
|
0b10001000,
|
|
|
|
0b10001100,
|
|
|
|
0b11001000,
|
|
|
|
0b11001100,
|
|
|
|
}
|
2016-05-15 18:39:17 +02:00
|
|
|
{
|
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* LedDeviceWs2812SPI::construct(const QJsonObject &deviceConfig)
|
2016-08-23 20:07:12 +02:00
|
|
|
{
|
|
|
|
return new LedDeviceWs2812SPI(deviceConfig);
|
2016-05-15 18:39:17 +02:00
|
|
|
}
|
|
|
|
|
2016-10-13 21:59:58 +02:00
|
|
|
bool LedDeviceWs2812SPI::init(const QJsonObject &deviceConfig)
|
2016-09-04 14:28:06 +02:00
|
|
|
{
|
2016-10-08 08:14:36 +02:00
|
|
|
_baudRate_Hz = 3000000;
|
|
|
|
ProviderSpi::init(deviceConfig);
|
2016-09-23 08:49:22 +02:00
|
|
|
WarningIf(( _baudRate_Hz < 2050000 || _baudRate_Hz > 4000000 ), _log, "SPI rate %d outside recommended range (2050000 -> 4000000)", _baudRate_Hz);
|
2016-09-04 14:28:06 +02:00
|
|
|
|
2016-09-23 08:49:22 +02:00
|
|
|
return true;
|
2016-09-04 14:28:06 +02:00
|
|
|
}
|
|
|
|
|
2016-05-15 18:39:17 +02:00
|
|
|
int LedDeviceWs2812SPI::write(const std::vector<ColorRgb> &ledValues)
|
|
|
|
{
|
2016-08-14 10:46:44 +02:00
|
|
|
// 3 colours, 4 spi bytes per colour + 3 frame end latch bytes
|
|
|
|
const int SPI_BYTES_PER_LED = 3 * 4;
|
|
|
|
unsigned spi_size = _ledCount * SPI_BYTES_PER_LED + 3;
|
2016-05-15 18:39:17 +02:00
|
|
|
|
2016-08-14 10:46:44 +02:00
|
|
|
if(_ledBuffer.size() != spi_size)
|
|
|
|
{
|
|
|
|
_ledBuffer.resize(spi_size, 0x00);
|
2016-05-15 18:39:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned spi_ptr = 0;
|
2016-09-23 08:49:22 +02:00
|
|
|
for (unsigned i=0; i<(unsigned)_ledCount; ++i)
|
2016-08-14 10:46:44 +02:00
|
|
|
{
|
2016-05-15 18:39:17 +02:00
|
|
|
uint32_t colorBits = ((unsigned int)ledValues[i].red << 16)
|
|
|
|
| ((unsigned int)ledValues[i].green << 8)
|
|
|
|
| ledValues[i].blue;
|
|
|
|
|
2016-08-14 10:46:44 +02:00
|
|
|
for (int j=SPI_BYTES_PER_LED - 1; j>=0; j--)
|
|
|
|
{
|
|
|
|
_ledBuffer[spi_ptr+j] = bitpair_to_byte[ colorBits & 0x3 ];
|
2016-05-15 18:39:17 +02:00
|
|
|
colorBits >>= 2;
|
|
|
|
}
|
|
|
|
spi_ptr += SPI_BYTES_PER_LED;
|
2016-08-14 10:46:44 +02:00
|
|
|
}
|
|
|
|
_ledBuffer[spi_ptr++] = 0;
|
|
|
|
_ledBuffer[spi_ptr++] = 0;
|
|
|
|
_ledBuffer[spi_ptr++] = 0;
|
2016-05-15 18:39:17 +02:00
|
|
|
|
2016-08-14 10:46:44 +02:00
|
|
|
return writeBytes(spi_size, _ledBuffer.data());
|
2016-05-15 18:39:17 +02:00
|
|
|
}
|