2014-01-04 11:35:11 +01:00
|
|
|
|
|
|
|
// STL includes
|
|
|
|
#include <cerrno>
|
|
|
|
#include <cstring>
|
2016-04-29 16:00:33 +02:00
|
|
|
#include <csignal>
|
|
|
|
|
|
|
|
|
|
|
|
// jsoncpp includes
|
|
|
|
#include <json/json.h>
|
2014-01-04 11:35:11 +01:00
|
|
|
|
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-04-29 16:00:33 +02:00
|
|
|
LedDevicePiBlaster::LedDevicePiBlaster(const std::string & deviceName, const Json::Value & gpioMapping) :
|
2014-01-04 11:35:11 +01:00
|
|
|
_deviceName(deviceName),
|
2016-06-25 22:08:17 +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';
|
|
|
|
}
|
|
|
|
|
|
|
|
// walk through the json config and populate the mapping tables
|
|
|
|
for (const Json::Value& gpioMap : gpioMapping)
|
|
|
|
{
|
|
|
|
const int gpio = gpioMap.get("gpio",-1).asInt();
|
|
|
|
const int ledindex = gpioMap.get("ledindex",-1).asInt();
|
|
|
|
const std::string ledcolor = gpioMap.get("ledcolor","z").asString();
|
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
|
|
|
}
|
|
|
|
}
|
2014-01-04 11:35:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
LedDevicePiBlaster::~LedDevicePiBlaster()
|
|
|
|
{
|
|
|
|
// Close the device (if it is opened)
|
|
|
|
if (_fid != nullptr)
|
|
|
|
{
|
|
|
|
fclose(_fid);
|
|
|
|
_fid = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-07 14:20:53 +01:00
|
|
|
int LedDevicePiBlaster::open(bool report)
|
2014-01-04 11:35:11 +01:00
|
|
|
{
|
|
|
|
if (_fid != nullptr)
|
|
|
|
{
|
|
|
|
// The file pointer is already open
|
2014-01-07 14:20:53 +01:00
|
|
|
if (report)
|
|
|
|
{
|
2016-06-25 14:44:52 +02:00
|
|
|
Error( _log, "Device (%s) is already open.", _deviceName.c_str() );
|
2014-01-07 14:20:53 +01:00
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!QFile::exists(_deviceName.c_str()))
|
|
|
|
{
|
|
|
|
if (report)
|
|
|
|
{
|
2016-06-25 14:44:52 +02:00
|
|
|
Error( _log, "The device (%s) does not yet exist.", _deviceName.c_str() );
|
2014-01-07 14:20:53 +01:00
|
|
|
}
|
2014-01-04 11:35:11 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
_fid = fopen(_deviceName.c_str(), "w");
|
|
|
|
if (_fid == nullptr)
|
|
|
|
{
|
2014-01-07 14:20:53 +01:00
|
|
|
if (report)
|
|
|
|
{
|
2016-06-25 14:44:52 +02:00
|
|
|
Error( _log, "Failed to open device (%s). Error message: %s", _deviceName.c_str(), strerror(errno) );
|
2014-01-07 14:20:53 +01:00
|
|
|
}
|
2014-01-04 11:35:11 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-06-25 14:44:52 +02:00
|
|
|
Info( _log, "Connected to device(%s)", _deviceName.c_str());
|
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
|
|
|
|
if (_fid == nullptr && open(false) < 0)
|
|
|
|
{
|
|
|
|
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 ];
|
|
|
|
if ( (valueIdx >= 0) && (valueIdx < (signed) ledValues.size()) )
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
int LedDevicePiBlaster::switchOff()
|
|
|
|
{
|
2014-01-07 14:20:53 +01:00
|
|
|
// Attempt to open if not yet opened
|
|
|
|
if (_fid == nullptr && open(false) < 0)
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
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 ];
|
|
|
|
if (valueIdx >= 0)
|
2014-01-04 11:35:11 +01:00
|
|
|
{
|
2016-04-29 16:00:33 +02:00
|
|
|
fprintf(_fid, "%i=%f\n", i, 0.0);
|
2014-01-04 11:35:11 +01:00
|
|
|
fflush(_fid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|