2016-06-25 22:08:17 +02:00
|
|
|
#include <leddevice/LedDevice.h>
|
2016-10-09 22:22:17 +02:00
|
|
|
#include <sstream>
|
2016-06-25 22:08:17 +02:00
|
|
|
|
2016-10-09 22:22:17 +02:00
|
|
|
//QT include
|
2016-09-10 19:08:08 +02:00
|
|
|
#include <QResource>
|
|
|
|
#include <QStringList>
|
|
|
|
#include <QDir>
|
2017-04-09 22:28:32 +02:00
|
|
|
#include <QDateTime>
|
|
|
|
|
2017-03-21 17:55:46 +01:00
|
|
|
#include "hyperion/Hyperion.h"
|
2017-10-12 11:55:03 +02:00
|
|
|
#include <utils/JsonUtils.h>
|
2016-09-10 19:08:08 +02:00
|
|
|
|
2019-07-02 19:06:36 +02:00
|
|
|
#include <QDebug>
|
|
|
|
|
2019-01-01 19:47:07 +01:00
|
|
|
LedDevice::LedDevice(const QJsonObject& config, QObject* parent)
|
|
|
|
: QObject(parent)
|
|
|
|
, _devConfig(config)
|
2018-12-27 23:11:32 +01:00
|
|
|
, _log(Logger::getInstance("LEDDEVICE"))
|
2016-08-14 10:46:44 +02:00
|
|
|
, _ledBuffer(0)
|
2016-10-08 08:14:36 +02:00
|
|
|
, _deviceReady(true)
|
2016-11-29 23:14:15 +01:00
|
|
|
, _refresh_timer()
|
2016-12-02 12:07:24 +01:00
|
|
|
, _refresh_timer_interval(0)
|
2017-04-09 22:28:32 +02:00
|
|
|
, _last_write_time(QDateTime::currentMSecsSinceEpoch())
|
|
|
|
, _latchTime_ms(0)
|
2017-03-21 17:55:46 +01:00
|
|
|
, _componentRegistered(false)
|
|
|
|
, _enabled(true)
|
2016-06-25 22:08:17 +02:00
|
|
|
{
|
2016-11-29 23:14:15 +01:00
|
|
|
// setup timer
|
|
|
|
_refresh_timer.setInterval(0);
|
|
|
|
connect(&_refresh_timer, SIGNAL(timeout()), this, SLOT(rewriteLeds()));
|
2016-06-25 22:08:17 +02:00
|
|
|
}
|
2016-07-13 11:18:12 +02:00
|
|
|
|
2019-01-01 19:47:07 +01:00
|
|
|
LedDevice::~LedDevice()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-08-23 20:07:12 +02:00
|
|
|
// dummy implemention
|
2016-07-13 11:18:12 +02:00
|
|
|
int LedDevice::open()
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2016-08-23 20:07:12 +02:00
|
|
|
|
2017-03-21 17:55:46 +01:00
|
|
|
void LedDevice::setEnable(bool enable)
|
|
|
|
{
|
2017-09-16 00:18:17 +02:00
|
|
|
// emit signal when state changed
|
|
|
|
if (_enabled != enable)
|
|
|
|
emit enableStateChanged(enable);
|
|
|
|
|
|
|
|
// set black to leds when they should go off
|
2017-03-21 17:55:46 +01:00
|
|
|
if ( _enabled && !enable)
|
|
|
|
switchOff();
|
2019-07-02 19:06:36 +02:00
|
|
|
|
2017-03-21 17:55:46 +01:00
|
|
|
_enabled = enable;
|
|
|
|
}
|
|
|
|
|
2017-03-04 22:17:42 +01:00
|
|
|
void LedDevice::setActiveDevice(QString dev)
|
2016-08-23 20:07:12 +02:00
|
|
|
{
|
|
|
|
_activeDevice = dev;
|
2016-09-10 19:08:08 +02:00
|
|
|
}
|
|
|
|
|
2016-12-02 12:07:24 +01:00
|
|
|
bool LedDevice::init(const QJsonObject &deviceConfig)
|
|
|
|
{
|
2018-12-27 23:11:32 +01:00
|
|
|
_colorOrder = deviceConfig["colorOrder"].toString("RGB");
|
|
|
|
_activeDevice = deviceConfig["type"].toString("file").toLower();
|
|
|
|
setLedCount(deviceConfig["currentLedCount"].toInt(1)); // property injected to reflect real led count
|
|
|
|
|
2017-04-09 22:28:32 +02:00
|
|
|
_latchTime_ms = deviceConfig["latchTime"].toInt(_latchTime_ms);
|
|
|
|
_refresh_timer.setInterval( deviceConfig["rewriteTime"].toInt( _refresh_timer_interval) );
|
|
|
|
if (_refresh_timer.interval() <= (signed)_latchTime_ms )
|
|
|
|
{
|
|
|
|
Warning(_log, "latchTime(%d) is bigger/equal rewriteTime(%d)", _refresh_timer.interval(), _latchTime_ms);
|
|
|
|
_refresh_timer.setInterval(_latchTime_ms+10);
|
|
|
|
}
|
|
|
|
|
2016-12-02 12:07:24 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-09-23 08:49:22 +02:00
|
|
|
int LedDevice::setLedValues(const std::vector<ColorRgb>& ledValues)
|
|
|
|
{
|
2017-04-09 22:28:32 +02:00
|
|
|
int retval = 0;
|
2017-03-21 17:55:46 +01:00
|
|
|
if (!_deviceReady || !_enabled)
|
2016-11-29 23:14:15 +01:00
|
|
|
return -1;
|
2017-03-21 17:55:46 +01:00
|
|
|
|
2016-11-29 23:14:15 +01:00
|
|
|
|
|
|
|
// restart the timer
|
|
|
|
if (_refresh_timer.interval() > 0)
|
|
|
|
{
|
|
|
|
_refresh_timer.start();
|
|
|
|
}
|
2017-04-09 22:28:32 +02:00
|
|
|
|
|
|
|
if (_latchTime_ms == 0 || QDateTime::currentMSecsSinceEpoch()-_last_write_time >= _latchTime_ms)
|
|
|
|
{
|
|
|
|
_ledValues = ledValues;
|
|
|
|
retval = write(ledValues);
|
|
|
|
_last_write_time = QDateTime::currentMSecsSinceEpoch();
|
2017-09-16 00:18:17 +02:00
|
|
|
}
|
2017-04-09 22:28:32 +02:00
|
|
|
//else Debug(_log, "latch %d", QDateTime::currentMSecsSinceEpoch()-_last_write_time);
|
|
|
|
|
|
|
|
return retval;
|
2016-09-23 08:49:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int LedDevice::switchOff()
|
|
|
|
{
|
2016-10-08 08:14:36 +02:00
|
|
|
return _deviceReady ? write(std::vector<ColorRgb>(_ledCount, ColorRgb::BLACK )) : -1;
|
2016-09-23 08:49:22 +02:00
|
|
|
}
|
|
|
|
|
2017-09-16 00:18:17 +02:00
|
|
|
int LedDevice::switchOn()
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2016-09-23 08:49:22 +02:00
|
|
|
|
2016-10-08 08:14:36 +02:00
|
|
|
void LedDevice::setLedCount(int ledCount)
|
|
|
|
{
|
|
|
|
_ledCount = ledCount;
|
|
|
|
_ledRGBCount = _ledCount * sizeof(ColorRgb);
|
|
|
|
_ledRGBWCount = _ledCount * sizeof(ColorRgbw);
|
|
|
|
}
|
2016-11-29 23:14:15 +01:00
|
|
|
|
|
|
|
int LedDevice::rewriteLeds()
|
|
|
|
{
|
2017-03-21 17:55:46 +01:00
|
|
|
return _enabled ? write(_ledValues) : -1;
|
2016-11-29 23:14:15 +01:00
|
|
|
}
|