2014-01-04 11:35:11 +01:00
|
|
|
|
|
|
|
// STL includes
|
|
|
|
#include <cstring>
|
2016-04-29 16:00:33 +02:00
|
|
|
#include <csignal>
|
|
|
|
|
2014-01-07 14:20:53 +01:00
|
|
|
// QT includes
|
|
|
|
#include <QFile>
|
|
|
|
|
2014-01-04 11:35:11 +01:00
|
|
|
// Local LedDevice includes
|
|
|
|
#include "LedDevicePiBlaster.h"
|
|
|
|
|
2016-10-13 21:59:58 +02:00
|
|
|
LedDevicePiBlaster::LedDevicePiBlaster(const QJsonObject &deviceConfig)
|
2016-08-23 20:07:12 +02:00
|
|
|
: _fid(nullptr)
|
2014-01-04 11:35:11 +01:00
|
|
|
{
|
2016-04-29 16:00:33 +02:00
|
|
|
signal(SIGPIPE, SIG_IGN);
|
|
|
|
|
|
|
|
// initialise the mapping tables
|
|
|
|
// -1 is invalid
|
|
|
|
// z is also meaningless
|
|
|
|
// { "gpio" : 4, "ledindex" : 0, "ledcolor" : "r" },
|
|
|
|
#define TABLE_SZ sizeof(_gpio_to_led)/sizeof(_gpio_to_led[0])
|
|
|
|
|
2016-05-22 12:56:44 +02:00
|
|
|
for (unsigned i=0; i < TABLE_SZ; i++ )
|
2016-04-29 16:00:33 +02:00
|
|
|
{
|
|
|
|
_gpio_to_led[i] = -1;
|
|
|
|
_gpio_to_color[i] = 'z';
|
|
|
|
}
|
|
|
|
|
2016-10-08 08:14:36 +02:00
|
|
|
_deviceReady = init(deviceConfig);
|
2016-08-23 20:07:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
LedDevicePiBlaster::~LedDevicePiBlaster()
|
|
|
|
{
|
|
|
|
// Close the device (if it is opened)
|
|
|
|
if (_fid != nullptr)
|
|
|
|
{
|
|
|
|
fclose(_fid);
|
|
|
|
_fid = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-10-13 21:59:58 +02:00
|
|
|
bool LedDevicePiBlaster::init(const QJsonObject &deviceConfig)
|
2016-08-23 20:07:12 +02:00
|
|
|
{
|
2016-12-02 12:07:24 +01:00
|
|
|
LedDevice::init(deviceConfig);
|
|
|
|
|
2017-07-05 23:19:44 +02:00
|
|
|
_deviceName = deviceConfig["output"].toString("/dev/pi-blaster");
|
2016-10-13 21:59:58 +02:00
|
|
|
QJsonArray gpioMapping = deviceConfig["gpiomap"].toArray();
|
2016-08-23 20:07:12 +02:00
|
|
|
|
2016-10-13 21:59:58 +02:00
|
|
|
if (gpioMapping.isEmpty())
|
2016-08-23 20:07:12 +02:00
|
|
|
{
|
|
|
|
throw std::runtime_error("Piblaster: no gpiomap defined.");
|
|
|
|
}
|
|
|
|
|
|
|
|
// walk through the json config and populate the mapping tables
|
2016-10-13 21:59:58 +02:00
|
|
|
for(QJsonArray::const_iterator gpioArray = gpioMapping.begin(); gpioArray != gpioMapping.end(); ++gpioArray)
|
2016-04-29 16:00:33 +02:00
|
|
|
{
|
2016-10-13 21:59:58 +02:00
|
|
|
const QJsonObject value = (*gpioArray).toObject();
|
|
|
|
const int gpio = value["gpio"].toInt(-1);
|
|
|
|
const int ledindex = value["ledindex"].toInt(-1);
|
|
|
|
const std::string ledcolor = value["ledcolor"].toString("z").toStdString();
|
2016-06-25 14:44:52 +02:00
|
|
|
|
2016-04-29 16:00:33 +02:00
|
|
|
// ignore missing/invalid settings
|
2016-05-22 12:56:44 +02:00
|
|
|
if ( (gpio >= 0) && (gpio < signed(TABLE_SZ)) && (ledindex >= 0) ){
|
2016-04-29 16:00:33 +02:00
|
|
|
_gpio_to_led[gpio] = ledindex;
|
|
|
|
_gpio_to_color[gpio] = ledcolor[0]; // 1st char of string
|
|
|
|
} else {
|
2016-06-25 14:44:52 +02:00
|
|
|
Warning( _log, "IGNORING gpio %d ledindex %d color %c", gpio,ledindex, ledcolor[0]);
|
2016-04-29 16:00:33 +02:00
|
|
|
}
|
|
|
|
}
|
2016-10-08 08:14:36 +02:00
|
|
|
|
2016-08-23 20:07:12 +02:00
|
|
|
return true;
|
2014-01-04 11:35:11 +01:00
|
|
|
}
|
|
|
|
|
2016-10-13 21:59:58 +02:00
|
|
|
LedDevice* LedDevicePiBlaster::construct(const QJsonObject &deviceConfig)
|
2014-01-04 11:35:11 +01:00
|
|
|
{
|
2016-08-23 20:07:12 +02:00
|
|
|
return new LedDevicePiBlaster(deviceConfig);
|
2014-01-04 11:35:11 +01:00
|
|
|
}
|
|
|
|
|
2016-08-08 00:17:00 +02:00
|
|
|
int LedDevicePiBlaster::open()
|
2014-01-04 11:35:11 +01:00
|
|
|
{
|
|
|
|
if (_fid != nullptr)
|
|
|
|
{
|
|
|
|
// The file pointer is already open
|
2017-03-04 22:17:42 +01:00
|
|
|
Error( _log, "Device (%s) is already open.", QSTRING_CSTR(_deviceName) );
|
2014-01-07 14:20:53 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2017-03-04 22:17:42 +01:00
|
|
|
if (!QFile::exists(_deviceName))
|
2014-01-07 14:20:53 +01:00
|
|
|
{
|
2017-03-04 22:17:42 +01:00
|
|
|
Error( _log, "The device (%s) does not yet exist.",QSTRING_CSTR(_deviceName) );
|
2014-01-04 11:35:11 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2017-03-04 22:17:42 +01:00
|
|
|
_fid = fopen(QSTRING_CSTR(_deviceName), "w");
|
2014-01-04 11:35:11 +01:00
|
|
|
if (_fid == nullptr)
|
|
|
|
{
|
2017-03-04 22:17:42 +01:00
|
|
|
Error( _log, "Failed to open device (%s). Error message: %s", QSTRING_CSTR(_deviceName), strerror(errno) );
|
2014-01-04 11:35:11 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2017-03-04 22:17:42 +01:00
|
|
|
Info( _log, "Connected to device(%s)", QSTRING_CSTR(_deviceName));
|
2014-01-07 14:20:53 +01:00
|
|
|
|
2014-01-04 11:35:11 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int LedDevicePiBlaster::write(const std::vector<ColorRgb> & ledValues)
|
|
|
|
{
|
2014-01-07 14:20:53 +01:00
|
|
|
// Attempt to open if not yet opened
|
2016-08-08 00:17:00 +02:00
|
|
|
if (_fid == nullptr && open() < 0)
|
2014-01-07 14:20:53 +01:00
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
2015-02-23 15:53:05 +01:00
|
|
|
|
2016-04-29 16:00:33 +02:00
|
|
|
int valueIdx = -1;
|
|
|
|
for (unsigned int i=0; i < TABLE_SZ; i++ )
|
2014-01-04 11:35:11 +01:00
|
|
|
{
|
2016-04-29 16:00:33 +02:00
|
|
|
valueIdx = _gpio_to_led[ i ];
|
2016-09-23 08:49:22 +02:00
|
|
|
if ( (valueIdx >= 0) && (valueIdx < _ledCount) )
|
2014-01-04 11:35:11 +01:00
|
|
|
{
|
2016-04-29 16:00:33 +02:00
|
|
|
double pwmDutyCycle = 0.0;
|
|
|
|
switch (_gpio_to_color[ i ])
|
|
|
|
{
|
|
|
|
case 'r':
|
|
|
|
pwmDutyCycle = ledValues[valueIdx].red / 255.0;
|
|
|
|
break;
|
|
|
|
case 'g':
|
|
|
|
pwmDutyCycle = ledValues[valueIdx].green / 255.0;
|
|
|
|
break;
|
|
|
|
case 'b':
|
|
|
|
pwmDutyCycle = ledValues[valueIdx].blue / 255.0;
|
|
|
|
break;
|
|
|
|
case 'w':
|
|
|
|
pwmDutyCycle = ledValues[valueIdx].red;
|
|
|
|
pwmDutyCycle += ledValues[valueIdx].green;
|
|
|
|
pwmDutyCycle += ledValues[valueIdx].blue;
|
|
|
|
pwmDutyCycle /= (3.0*255.0);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// fprintf(_fid, "%i=%f\n", iPins[iPin], pwmDutyCycle);
|
|
|
|
|
|
|
|
if ( (fprintf(_fid, "%i=%f\n", i, pwmDutyCycle) < 0)
|
|
|
|
|| (fflush(_fid) < 0)) {
|
|
|
|
if (_fid != nullptr)
|
|
|
|
{
|
|
|
|
fclose(_fid);
|
|
|
|
_fid = nullptr;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2014-01-04 11:35:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|