2016-02-09 20:21:49 +01:00
|
|
|
|
2014-12-03 09:35:10 +01:00
|
|
|
// STL includes
|
|
|
|
#include <cstring>
|
|
|
|
#include <cstdio>
|
|
|
|
#include <iostream>
|
2016-02-09 20:21:49 +01:00
|
|
|
#include <algorithm>
|
2014-12-03 09:35:10 +01:00
|
|
|
|
|
|
|
// Linux includes
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
|
|
|
|
// hyperion local includes
|
|
|
|
#include "LedDeviceAPA102.h"
|
|
|
|
|
2016-08-23 20:07:12 +02:00
|
|
|
LedDeviceAPA102::LedDeviceAPA102(const Json::Value &deviceConfig)
|
2016-08-28 07:12:48 +02:00
|
|
|
: ProviderSpi(deviceConfig)
|
2014-12-03 09:35:10 +01:00
|
|
|
{
|
2016-08-23 20:07:12 +02:00
|
|
|
_latchTime_ns = 500000;
|
|
|
|
}
|
|
|
|
|
|
|
|
LedDevice* LedDeviceAPA102::construct(const Json::Value &deviceConfig)
|
|
|
|
{
|
|
|
|
return new LedDeviceAPA102(deviceConfig);
|
2014-12-03 09:35:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int LedDeviceAPA102::write(const std::vector<ColorRgb> &ledValues)
|
|
|
|
{
|
2016-08-14 10:46:44 +02:00
|
|
|
_ledCount = ledValues.size();
|
2016-02-09 20:21:49 +01:00
|
|
|
const unsigned int startFrameSize = 4;
|
2016-08-14 10:46:44 +02:00
|
|
|
const unsigned int endFrameSize = std::max<unsigned int>(((_ledCount + 15) / 16), 4);
|
|
|
|
const unsigned int APAbufferSize = (_ledCount * 4) + startFrameSize + endFrameSize;
|
2016-05-10 12:16:19 +02:00
|
|
|
|
|
|
|
if(_ledBuffer.size() != APAbufferSize){
|
|
|
|
_ledBuffer.resize(APAbufferSize, 0xFF);
|
2016-02-09 20:21:49 +01:00
|
|
|
_ledBuffer[0] = 0x00;
|
|
|
|
_ledBuffer[1] = 0x00;
|
|
|
|
_ledBuffer[2] = 0x00;
|
|
|
|
_ledBuffer[3] = 0x00;
|
2016-02-07 17:40:24 +01:00
|
|
|
}
|
2016-02-09 20:21:49 +01:00
|
|
|
|
2016-08-14 10:46:44 +02:00
|
|
|
for (signed iLed=0; iLed < _ledCount; ++iLed) {
|
2016-05-10 12:16:19 +02:00
|
|
|
const ColorRgb& rgb = ledValues[iLed];
|
|
|
|
_ledBuffer[4+iLed*4] = 0xFF;
|
|
|
|
_ledBuffer[4+iLed*4+1] = rgb.red;
|
|
|
|
_ledBuffer[4+iLed*4+2] = rgb.green;
|
|
|
|
_ledBuffer[4+iLed*4+3] = rgb.blue;
|
2014-12-11 13:48:14 +01:00
|
|
|
}
|
2014-12-03 09:35:10 +01:00
|
|
|
|
2014-12-11 13:48:14 +01:00
|
|
|
return writeBytes(_ledBuffer.size(), _ledBuffer.data());
|
2014-12-03 09:35:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int LedDeviceAPA102::switchOff()
|
|
|
|
{
|
2016-08-14 10:46:44 +02:00
|
|
|
return write(std::vector<ColorRgb>(_ledCount, ColorRgb{0,0,0}));
|
2016-02-07 17:40:24 +01:00
|
|
|
}
|