2016-06-27 22:43:35 +02:00
|
|
|
|
|
|
|
// STL includes
|
|
|
|
#include <cstring>
|
|
|
|
#include <cstdio>
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
// Linux includes
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
|
|
|
|
// hyperion local includes
|
|
|
|
#include "LedDeviceSk6812SPI.h"
|
|
|
|
|
2016-08-23 20:07:12 +02:00
|
|
|
LedDeviceSk6812SPI::LedDeviceSk6812SPI(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-06-27 22:43:35 +02:00
|
|
|
0b10001000,
|
|
|
|
0b10001100,
|
|
|
|
0b11001000,
|
|
|
|
0b11001100,
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2016-08-23 20:07:12 +02:00
|
|
|
setConfig(deviceConfig);
|
|
|
|
Debug( _log, "whiteAlgorithm : %s", _whiteAlgorithm.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
LedDevice* LedDeviceSk6812SPI::construct(const Json::Value &deviceConfig)
|
|
|
|
{
|
|
|
|
return new LedDeviceSk6812SPI(deviceConfig);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool LedDeviceSk6812SPI::setConfig(const Json::Value &deviceConfig)
|
|
|
|
{
|
2016-08-28 07:12:48 +02:00
|
|
|
ProviderSpi::setConfig(deviceConfig);
|
2016-09-04 14:28:06 +02:00
|
|
|
|
|
|
|
_baudRate_Hz = deviceConfig.get("rate",3000000).asInt();
|
|
|
|
if ( (_baudRate_Hz < 2050000) || (_baudRate_Hz > 4000000) )
|
|
|
|
{
|
|
|
|
Warning(_log, "SPI rate %d outside recommended range (2050000 -> 4000000)", _baudRate_Hz);
|
|
|
|
}
|
|
|
|
|
2016-08-23 20:07:12 +02:00
|
|
|
_whiteAlgorithm = deviceConfig.get("white_algorithm","").asString();
|
|
|
|
|
|
|
|
return true;
|
2016-06-27 22:43:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int LedDeviceSk6812SPI::write(const std::vector<ColorRgb> &ledValues)
|
|
|
|
{
|
2016-08-14 10:46:44 +02:00
|
|
|
_ledCount = ledValues.size();
|
2016-06-27 22:43:35 +02:00
|
|
|
|
|
|
|
// 4 colours, 4 spi bytes per colour + 3 frame end latch bytes
|
2016-07-10 17:07:19 +02:00
|
|
|
#define COLOURS_PER_LED 4
|
2016-06-27 22:43:35 +02:00
|
|
|
#define SPI_BYTES_PER_COLOUR 4
|
|
|
|
#define SPI_BYTES_PER_LED COLOURS_PER_LED * SPI_BYTES_PER_COLOUR
|
|
|
|
|
2016-08-14 10:46:44 +02:00
|
|
|
unsigned spi_size = _ledCount * SPI_BYTES_PER_LED + 3;
|
|
|
|
if(_ledBuffer.size() != spi_size){
|
|
|
|
_ledBuffer.resize(spi_size, 0x00);
|
2016-06-27 22:43:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned spi_ptr = 0;
|
2016-07-10 17:07:19 +02:00
|
|
|
|
|
|
|
for (const ColorRgb& color : ledValues) {
|
|
|
|
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-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-08-14 10:46:44 +02:00
|
|
|
return writeBytes(spi_size, _ledBuffer.data());
|
2016-06-27 22:43:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int LedDeviceSk6812SPI::switchOff()
|
|
|
|
{
|
2016-08-14 10:46:44 +02:00
|
|
|
return write(std::vector<ColorRgb>(_ledCount, ColorRgb{0,0,0}));
|
2016-06-27 22:43:35 +02:00
|
|
|
}
|