2016-05-15 18:39:17 +02:00
|
|
|
|
|
|
|
// STL includes
|
|
|
|
#include <cstring>
|
|
|
|
#include <cstdio>
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
// Linux includes
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
|
|
|
|
// hyperion local includes
|
|
|
|
#include "LedDeviceWs2812SPI.h"
|
|
|
|
|
2016-08-23 20:07:12 +02:00
|
|
|
LedDeviceWs2812SPI::LedDeviceWs2812SPI(const Json::Value &deviceConfig)
|
2016-08-28 07:12:48 +02:00
|
|
|
: ProviderSpi(deviceConfig)
|
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-08-23 20:07:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
LedDevice* LedDeviceWs2812SPI::construct(const Json::Value &deviceConfig)
|
|
|
|
{
|
|
|
|
return new LedDeviceWs2812SPI(deviceConfig);
|
2016-05-15 18:39:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int LedDeviceWs2812SPI::write(const std::vector<ColorRgb> &ledValues)
|
|
|
|
{
|
2016-08-14 10:46:44 +02:00
|
|
|
_ledCount = ledValues.size();
|
2016-05-15 18:39:17 +02:00
|
|
|
|
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-08-14 10:46:44 +02:00
|
|
|
for (unsigned i=0; i< (unsigned)_ledCount; ++i)
|
|
|
|
{
|
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
|
|
|
}
|
|
|
|
|
|
|
|
int LedDeviceWs2812SPI::switchOff()
|
|
|
|
{
|
2016-08-14 10:46:44 +02:00
|
|
|
return write(std::vector<ColorRgb>(_ledCount, ColorRgb{0,0,0}));
|
2016-05-15 18:39:17 +02:00
|
|
|
}
|