mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
cc8185691a
%s/LedUdpDevice/ProviderUdp/g git mv LedUdpDevice.cpp ProviderUdp.cpp git mv LedUdpDevice.h ProviderUdp.h vi `grep -l LedHID *` %s/LedHIDDevice/ProviderHID/g git mv LedHIDDevice.cpp ProviderHID.cpp git mv LedHIDDevice.h ProviderHID.h vi `grep -l LedRs *` %s/LedRs232Device/ProviderRs232/g git mv LedRs232Device.cpp ProviderRs232.cpp git mv LedRs232Device.h ProviderRs232.h vi `grep -l LedSpi *` %s/LedSpiDevice/ProviderSpi/g git mv LedSpiDevice.cpp ProviderSpi.cpp git mv LedSpiDevice.h ProviderSpi.h
68 lines
1.4 KiB
C++
68 lines
1.4 KiB
C++
|
|
// STL includes
|
|
#include <cstring>
|
|
#include <cstdio>
|
|
#include <iostream>
|
|
|
|
// Linux includes
|
|
#include <fcntl.h>
|
|
#include <sys/ioctl.h>
|
|
|
|
// hyperion local includes
|
|
#include "LedDeviceSedu.h"
|
|
|
|
struct FrameSpec
|
|
{
|
|
uint8_t id;
|
|
size_t size;
|
|
};
|
|
|
|
LedDeviceSedu::LedDeviceSedu(const Json::Value &deviceConfig)
|
|
: ProviderRs232(deviceConfig)
|
|
{
|
|
// empty
|
|
}
|
|
|
|
LedDevice* LedDeviceSedu::construct(const Json::Value &deviceConfig)
|
|
{
|
|
return new LedDeviceSedu(deviceConfig);
|
|
}
|
|
|
|
int LedDeviceSedu::write(const std::vector<ColorRgb> &ledValues)
|
|
{
|
|
if (_ledBuffer.size() == 0)
|
|
{
|
|
std::vector<FrameSpec> frameSpecs{{0xA1, 256}, {0xA2, 512}, {0xB0, 768}, {0xB1, 1536}, {0xB2, 3072} };
|
|
|
|
const unsigned reqColorChannels = ledValues.size() * sizeof(ColorRgb);
|
|
|
|
for (const FrameSpec& frameSpec : frameSpecs)
|
|
{
|
|
if (reqColorChannels <= frameSpec.size)
|
|
{
|
|
_ledBuffer.clear();
|
|
_ledBuffer.resize(frameSpec.size + 3, 0);
|
|
_ledBuffer[0] = 0x5A;
|
|
_ledBuffer[1] = frameSpec.id;
|
|
_ledBuffer.back() = 0xA5;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (_ledBuffer.size() == 0)
|
|
{
|
|
Warning(_log, "More rgb-channels required then available");
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
memcpy(_ledBuffer.data()+2, ledValues.data(), ledValues.size() * sizeof(ColorRgb));
|
|
return writeBytes(_ledBuffer.size(), _ledBuffer.data());
|
|
}
|
|
|
|
int LedDeviceSedu::switchOff()
|
|
{
|
|
memset(_ledBuffer.data()+2, 0, _ledBuffer.size()-3);
|
|
return writeBytes(_ledBuffer.size(), _ledBuffer.data());
|
|
}
|