ws2812fx: Add Qt6 support

This commit is contained in:
Simon Stürz 2025-08-11 15:11:13 +02:00
parent d935f0eb40
commit e5b241e4fa
3 changed files with 80 additions and 81 deletions

View File

@ -1,6 +1,6 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* *
* Copyright 2013 - 2020, nymea GmbH * Copyright 2013 - 2025, nymea GmbH
* Contact: contact@nymea.io * Contact: contact@nymea.io
* *
* This file is part of nymea. * This file is part of nymea.
@ -44,6 +44,7 @@
\quotefile plugins/deviceplugins/ws2812fx/devicepluginws2812fx.json \quotefile plugins/deviceplugins/ws2812fx/devicepluginws2812fx.json
*/ */
#include <QColor> #include <QColor>
#include "integrationpluginws2812fx.h" #include "integrationpluginws2812fx.h"
#include "plugininfo.h" #include "plugininfo.h"
@ -77,8 +78,12 @@ void IntegrationPluginWs2812fx::setupThing(ThingSetupInfo *info)
return info->finish(Thing::ThingErrorHardwareFailure, QT_TR_NOOP("Error opening serial port.")); return info->finish(Thing::ThingErrorHardwareFailure, QT_TR_NOOP("Error opening serial port."));
} }
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
connect(serialPort, &QSerialPort::errorOccurred, this, &IntegrationPluginWs2812fx::onSerialError);
#else
connect(serialPort, SIGNAL(error(QSerialPort::SerialPortError)), this, SLOT(onSerialError(QSerialPort::SerialPortError))); connect(serialPort, SIGNAL(error(QSerialPort::SerialPortError)), this, SLOT(onSerialError(QSerialPort::SerialPortError)));
connect(serialPort, SIGNAL(readyRead()), this, SLOT(onReadyRead())); #endif
connect(serialPort, &QSerialPort::readyRead, this, &IntegrationPluginWs2812fx::onReadyRead);
qCDebug(dcWs2812fx()) << "Setup successfully serial port" << interface; qCDebug(dcWs2812fx()) << "Setup successfully serial port" << interface;
thing->setStateValue(ws2812fxConnectedStateTypeId, true); thing->setStateValue(ws2812fxConnectedStateTypeId, true);
@ -139,7 +144,7 @@ void IntegrationPluginWs2812fx::executeAction(ThingActionInfo *info)
if (action.actionTypeId() == ws2812fxBrightnessActionTypeId) { if (action.actionTypeId() == ws2812fxBrightnessActionTypeId) {
command.append("b "); command.append("b ");
command.append(action.param(ws2812fxBrightnessActionBrightnessParamTypeId).value().toString()); command.append(action.param(ws2812fxBrightnessActionBrightnessParamTypeId).value().toString().toUtf8());
command.append("\r\n"); command.append("\r\n");
return sendCommand(info, command, CommandType::Brightness); return sendCommand(info, command, CommandType::Brightness);
} }
@ -147,7 +152,7 @@ void IntegrationPluginWs2812fx::executeAction(ThingActionInfo *info)
if (action.actionTypeId() == ws2812fxSpeedActionTypeId) { if (action.actionTypeId() == ws2812fxSpeedActionTypeId) {
command.append("s "); command.append("s ");
command.append(action.param(ws2812fxSpeedActionSpeedParamTypeId).value().toString()); command.append(action.param(ws2812fxSpeedActionSpeedParamTypeId).value().toString().toUtf8());
command.append("\r\n"); command.append("\r\n");
return sendCommand(info, command, CommandType::Speed); return sendCommand(info, command, CommandType::Speed);
} }
@ -157,7 +162,7 @@ void IntegrationPluginWs2812fx::executeAction(ThingActionInfo *info)
QColor color; QColor color;
color= action.param(ws2812fxColorActionColorParamTypeId).value().value<QColor>(); color= action.param(ws2812fxColorActionColorParamTypeId).value().value<QColor>();
command.append("c "); command.append("c ");
command.append(QString(color.name()).remove("#")); command.append(QString(color.name()).remove("#").toUtf8());
command.append("\r\n"); command.append("\r\n");
return sendCommand(info, command, CommandType::Color); return sendCommand(info, command, CommandType::Color);
} }
@ -169,7 +174,7 @@ void IntegrationPluginWs2812fx::executeAction(ThingActionInfo *info)
color.setRgb(255, 255, static_cast<int>((255.00-(((action.param(ws2812fxColorTemperatureActionColorTemperatureParamTypeId).value().toDouble()-153.00)/347.00))*255.00))); color.setRgb(255, 255, static_cast<int>((255.00-(((action.param(ws2812fxColorTemperatureActionColorTemperatureParamTypeId).value().toDouble()-153.00)/347.00))*255.00)));
thing->setStateValue(ws2812fxColorTemperatureStateTypeId, action.param(ws2812fxColorTemperatureActionColorTemperatureParamTypeId).value()); thing->setStateValue(ws2812fxColorTemperatureStateTypeId, action.param(ws2812fxColorTemperatureActionColorTemperatureParamTypeId).value());
command.append("c "); command.append("c ");
command.append(QString(color.name()).remove("#")); command.append(QString(color.name()).remove("#").toUtf8());
command.append("\r\n"); command.append("\r\n");
return sendCommand(info, command, CommandType::Color); return sendCommand(info, command, CommandType::Color);
} }
@ -179,121 +184,121 @@ void IntegrationPluginWs2812fx::executeAction(ThingActionInfo *info)
QString effectMode = action.param(ws2812fxEffectModeActionEffectModeParamTypeId).value().toString(); QString effectMode = action.param(ws2812fxEffectModeActionEffectModeParamTypeId).value().toString();
command.append("m "); command.append("m ");
if (effectMode == "Static") { if (effectMode == "Static") {
command.append(QString::number(FX_MODE_STATIC)); command.append(QString::number(FX_MODE_STATIC).toUtf8());
} else if (effectMode == "Blink") { } else if (effectMode == "Blink") {
command.append(QString::number(FX_MODE_BLINK)); command.append(QString::number(FX_MODE_BLINK).toUtf8());
} else if (effectMode == "Color Wipe") { } else if (effectMode == "Color Wipe") {
command.append(QString::number(FX_MODE_COLOR_WIPE)); command.append(QString::number(FX_MODE_COLOR_WIPE).toUtf8());
} else if (effectMode == "Color Wipe Inverse") { } else if (effectMode == "Color Wipe Inverse") {
command.append(QString::number(FX_MODE_COLOR_WIPE_INV)); command.append(QString::number(FX_MODE_COLOR_WIPE_INV).toUtf8());
} else if (effectMode == "Color Wipe Reverse") { } else if (effectMode == "Color Wipe Reverse") {
command.append(QString::number(FX_MODE_COLOR_WIPE_REV)); command.append(QString::number(FX_MODE_COLOR_WIPE_REV).toUtf8());
} else if (effectMode == "Color Wipe Reverse Inverse") { } else if (effectMode == "Color Wipe Reverse Inverse") {
command.append(QString::number(FX_MODE_COLOR_WIPE_REV_INV)); command.append(QString::number(FX_MODE_COLOR_WIPE_REV_INV).toUtf8());
} else if (effectMode == "Color Wipe Random") { } else if (effectMode == "Color Wipe Random") {
command.append(QString::number(FX_MODE_COLOR_WIPE_RANDOM)); command.append(QString::number(FX_MODE_COLOR_WIPE_RANDOM).toUtf8());
} else if (effectMode == "Random Color") { } else if (effectMode == "Random Color") {
command.append(QString::number(FX_MODE_RANDOM_COLOR)); command.append(QString::number(FX_MODE_RANDOM_COLOR).toUtf8());
} else if (effectMode == "Single Dynamic") { } else if (effectMode == "Single Dynamic") {
command.append(QString::number(FX_MODE_SINGLE_DYNAMIC)); command.append(QString::number(FX_MODE_SINGLE_DYNAMIC).toUtf8());
} else if (effectMode == "Multi Dynamic") { } else if (effectMode == "Multi Dynamic") {
command.append(QString::number(FX_MODE_MULTI_DYNAMIC)); command.append(QString::number(FX_MODE_MULTI_DYNAMIC).toUtf8());
} else if (effectMode == "Rainbow") { } else if (effectMode == "Rainbow") {
command.append(QString::number(FX_MODE_RAINBOW)); command.append(QString::number(FX_MODE_RAINBOW).toUtf8());
} else if (effectMode == "Rainbow Cycle") { } else if (effectMode == "Rainbow Cycle") {
command.append(QString::number(FX_MODE_RAINBOW_CYCLE)); command.append(QString::number(FX_MODE_RAINBOW_CYCLE).toUtf8());
} else if (effectMode == "Scan") { } else if (effectMode == "Scan") {
command.append(QString::number(FX_MODE_SCAN)); command.append(QString::number(FX_MODE_SCAN).toUtf8());
} else if (effectMode == "Dual Scan") { } else if (effectMode == "Dual Scan") {
command.append(QString::number(FX_MODE_DUAL_SCAN)); command.append(QString::number(FX_MODE_DUAL_SCAN).toUtf8());
} else if (effectMode == "Fade") { } else if (effectMode == "Fade") {
command.append(QString::number(FX_MODE_FADE)); command.append(QString::number(FX_MODE_FADE).toUtf8());
} else if (effectMode == "Theater Chase") { } else if (effectMode == "Theater Chase") {
command.append(QString::number(FX_MODE_THEATER_CHASE)); command.append(QString::number(FX_MODE_THEATER_CHASE).toUtf8());
} else if (effectMode == "Theater Chase Rainbow") { } else if (effectMode == "Theater Chase Rainbow") {
command.append(QString::number(FX_MODE_THEATER_CHASE_RAINBOW)); command.append(QString::number(FX_MODE_THEATER_CHASE_RAINBOW).toUtf8());
} else if (effectMode == "Running Lights") { } else if (effectMode == "Running Lights") {
command.append(QString::number(FX_MODE_RUNNING_LIGHTS)); command.append(QString::number(FX_MODE_RUNNING_LIGHTS).toUtf8());
} else if (effectMode == "Twinkle") { } else if (effectMode == "Twinkle") {
command.append(QString::number(FX_MODE_TWINKLE)); command.append(QString::number(FX_MODE_TWINKLE).toUtf8());
} else if (effectMode == "Twinkle Random") { } else if (effectMode == "Twinkle Random") {
command.append(QString::number(FX_MODE_TWINKLE_RANDOM)); command.append(QString::number(FX_MODE_TWINKLE_RANDOM).toUtf8());
} else if (effectMode == "Twinkle Fade") { } else if (effectMode == "Twinkle Fade") {
command.append(QString::number(FX_MODE_TWINKLE_FADE)); command.append(QString::number(FX_MODE_TWINKLE_FADE).toUtf8());
} else if (effectMode == "Twinkle Fade Random") { } else if (effectMode == "Twinkle Fade Random") {
command.append(QString::number(FX_MODE_TWINKLE_FADE_RANDOM)); command.append(QString::number(FX_MODE_TWINKLE_FADE_RANDOM).toUtf8());
} else if (effectMode == "Sparkle") { } else if (effectMode == "Sparkle") {
command.append(QString::number(FX_MODE_SPARKLE)); command.append(QString::number(FX_MODE_SPARKLE).toUtf8());
} else if (effectMode == "Flash Sparkle") { } else if (effectMode == "Flash Sparkle") {
command.append(QString::number(FX_MODE_FLASH_SPARKLE)); command.append(QString::number(FX_MODE_FLASH_SPARKLE).toUtf8());
} else if (effectMode == "Hyper Sparkle") { } else if (effectMode == "Hyper Sparkle") {
command.append(QString::number(FX_MODE_HYPER_SPARKLE)); command.append(QString::number(FX_MODE_HYPER_SPARKLE).toUtf8());
} else if (effectMode == "Strobe") { } else if (effectMode == "Strobe") {
command.append(QString::number(FX_MODE_STROBE)); command.append(QString::number(FX_MODE_STROBE).toUtf8());
} else if (effectMode == "Strobe Rainbow") { } else if (effectMode == "Strobe Rainbow") {
command.append(QString::number(FX_MODE_STROBE_RAINBOW)); command.append(QString::number(FX_MODE_STROBE_RAINBOW).toUtf8());
} else if (effectMode == "Multi Strobe") { } else if (effectMode == "Multi Strobe") {
command.append(QString::number(FX_MODE_MULTI_STROBE)); command.append(QString::number(FX_MODE_MULTI_STROBE).toUtf8());
} else if (effectMode == "Blink Rainbow") { } else if (effectMode == "Blink Rainbow") {
command.append(QString::number(FX_MODE_BLINK_RAINBOW)); command.append(QString::number(FX_MODE_BLINK_RAINBOW).toUtf8());
} else if (effectMode == "Chase White") { } else if (effectMode == "Chase White") {
command.append(QString::number(FX_MODE_CHASE_WHITE)); command.append(QString::number(FX_MODE_CHASE_WHITE).toUtf8());
} else if (effectMode == "Chase Color") { } else if (effectMode == "Chase Color") {
command.append(QString::number(FX_MODE_CHASE_COLOR)); command.append(QString::number(FX_MODE_CHASE_COLOR).toUtf8());
} else if (effectMode == "Chase Random") { } else if (effectMode == "Chase Random") {
command.append(QString::number(FX_MODE_CHASE_RANDOM)); command.append(QString::number(FX_MODE_CHASE_RANDOM).toUtf8());
} else if (effectMode == "Chase Flash") { } else if (effectMode == "Chase Flash") {
command.append(QString::number(FX_MODE_CHASE_FLASH)); command.append(QString::number(FX_MODE_CHASE_FLASH).toUtf8());
} else if (effectMode == "Chase Flash Random") { } else if (effectMode == "Chase Flash Random") {
command.append(QString::number(FX_MODE_CHASE_FLASH_RANDOM)); command.append(QString::number(FX_MODE_CHASE_FLASH_RANDOM).toUtf8());
} else if (effectMode == "Chase Rainbow White") { } else if (effectMode == "Chase Rainbow White") {
command.append(QString::number(FX_MODE_CHASE_RAINBOW_WHITE)); command.append(QString::number(FX_MODE_CHASE_RAINBOW_WHITE).toUtf8());
} else if (effectMode == "Chase Blackout") { } else if (effectMode == "Chase Blackout") {
command.append(QString::number(FX_MODE_CHASE_BLACKOUT)); command.append(QString::number(FX_MODE_CHASE_BLACKOUT).toUtf8());
} else if (effectMode == "Chase Blackout Rainbow") { } else if (effectMode == "Chase Blackout Rainbow") {
command.append(QString::number(FX_MODE_CHASE_BLACKOUT_RAINBOW)); command.append(QString::number(FX_MODE_CHASE_BLACKOUT_RAINBOW).toUtf8());
} else if (effectMode == "Color Sweep Random") { } else if (effectMode == "Color Sweep Random") {
command.append(QString::number(FX_MODE_COLOR_SWEEP_RANDOM)); command.append(QString::number(FX_MODE_COLOR_SWEEP_RANDOM).toUtf8());
} else if (effectMode == "Running Color") { } else if (effectMode == "Running Color") {
command.append(QString::number(FX_MODE_RUNNING_COLOR)); command.append(QString::number(FX_MODE_RUNNING_COLOR).toUtf8());
} else if (effectMode == "Running Red Blue") { } else if (effectMode == "Running Red Blue") {
command.append(QString::number(FX_MODE_RUNNING_RED_BLUE)); command.append(QString::number(FX_MODE_RUNNING_RED_BLUE).toUtf8());
} else if (effectMode == "Running Random") { } else if (effectMode == "Running Random") {
command.append(QString::number(FX_MODE_RUNNING_RANDOM)); command.append(QString::number(FX_MODE_RUNNING_RANDOM).toUtf8());
}else if (effectMode == "Larson Scanner") { }else if (effectMode == "Larson Scanner") {
command.append(QString::number(FX_MODE_LARSON_SCANNER)); command.append(QString::number(FX_MODE_LARSON_SCANNER).toUtf8());
}else if (effectMode == "Comet") { }else if (effectMode == "Comet") {
command.append(QString::number(FX_MODE_COMET)); command.append(QString::number(FX_MODE_COMET).toUtf8());
}else if (effectMode == "Fireworks") { }else if (effectMode == "Fireworks") {
command.append(QString::number(FX_MODE_FIREWORKS)); command.append(QString::number(FX_MODE_FIREWORKS).toUtf8());
}else if (effectMode == "Fireworks Random") { }else if (effectMode == "Fireworks Random") {
command.append(QString::number(FX_MODE_FIREWORKS_RANDOM)); command.append(QString::number(FX_MODE_FIREWORKS_RANDOM).toUtf8());
}else if (effectMode == "Merry Christmas") { }else if (effectMode == "Merry Christmas") {
command.append(QString::number(FX_MODE_MERRY_CHRISTMAS)); command.append(QString::number(FX_MODE_MERRY_CHRISTMAS).toUtf8());
}else if (effectMode == "Fire Flicker") { }else if (effectMode == "Fire Flicker") {
command.append(QString::number(FX_MODE_FIRE_FLICKER)); command.append(QString::number(FX_MODE_FIRE_FLICKER).toUtf8());
}else if (effectMode == "Fire Flicker (soft)") { }else if (effectMode == "Fire Flicker (soft)") {
command.append(QString::number(FX_MODE_FIRE_FLICKER_SOFT)); command.append(QString::number(FX_MODE_FIRE_FLICKER_SOFT).toUtf8());
}else if (effectMode == "Fire Flicker (intense)") { }else if (effectMode == "Fire Flicker (intense)") {
command.append(QString::number(FX_MODE_FIRE_FLICKER_INTENSE)); command.append(QString::number(FX_MODE_FIRE_FLICKER_INTENSE).toUtf8());
}else if (effectMode == "Circus Combustus") { }else if (effectMode == "Circus Combustus") {
command.append(QString::number(FX_MODE_CIRCUS_COMBUSTUS)); command.append(QString::number(FX_MODE_CIRCUS_COMBUSTUS).toUtf8());
}else if (effectMode == "Halloween") { }else if (effectMode == "Halloween") {
command.append(QString::number(FX_MODE_HALLOWEEN)); command.append(QString::number(FX_MODE_HALLOWEEN).toUtf8());
}else if (effectMode == "Bicolor Chase") { }else if (effectMode == "Bicolor Chase") {
command.append(QString::number(FX_MODE_BICOLOR_CHASE)); command.append(QString::number(FX_MODE_BICOLOR_CHASE).toUtf8());
}else if (effectMode == "Tricolor Chase") { }else if (effectMode == "Tricolor Chase") {
command.append(QString::number(FX_MODE_TRICOLOR_CHASE)); command.append(QString::number(FX_MODE_TRICOLOR_CHASE).toUtf8());
}else if (effectMode == "ICU") { }else if (effectMode == "ICU") {
command.append(QString::number(FX_MODE_ICU)); command.append(QString::number(FX_MODE_ICU).toUtf8());
}else if (effectMode == "Custom 0") { }else if (effectMode == "Custom 0") {
command.append(QString::number(FX_MODE_CUSTOM_0)); command.append(QString::number(FX_MODE_CUSTOM_0).toUtf8());
}else if (effectMode == "Custom 1") { }else if (effectMode == "Custom 1") {
command.append(QString::number(FX_MODE_CUSTOM_1)); command.append(QString::number(FX_MODE_CUSTOM_1).toUtf8());
}else if (effectMode == "Custom 2") { }else if (effectMode == "Custom 2") {
command.append(QString::number(FX_MODE_CUSTOM_2)); command.append(QString::number(FX_MODE_CUSTOM_2).toUtf8());
}else if (effectMode == "Custom 3") { }else if (effectMode == "Custom 3") {
command.append(QString::number(FX_MODE_CUSTOM_3)); command.append(QString::number(FX_MODE_CUSTOM_3).toUtf8());
} }
command.append("\r\n"); command.append("\r\n");
return sendCommand(info, command, CommandType::Mode); return sendCommand(info, command, CommandType::Mode);
@ -326,7 +331,7 @@ void IntegrationPluginWs2812fx::onReadyRead()
QByteArray data; QByteArray data;
while (serialPort->canReadLine()) { while (serialPort->canReadLine()) {
data = serialPort->readLine(); data = serialPort->readLine();
qDebug(dcWs2812fx()) << "Message received" << data; qCDebug(dcWs2812fx()) << "Message received" << data;
if (data.contains("mode")) { if (data.contains("mode")) {
if (m_pendingActions.contains(CommandType::Mode)) { if (m_pendingActions.contains(CommandType::Mode)) {
@ -335,7 +340,7 @@ void IntegrationPluginWs2812fx::onReadyRead()
QString mode = data.split('-').at(1); QString mode = data.split('-').at(1);
mode.remove(0, 1); mode.remove(0, 1);
mode.remove("\r\n"); mode.remove("\r\n");
qDebug(dcWs2812fx()) << "set mode to:" << mode; qCDebug(dcWs2812fx()) << "set mode to:" << mode;
thing->setStateValue(ws2812fxEffectModeStateTypeId, mode); thing->setStateValue(ws2812fxEffectModeStateTypeId, mode);
} }
if (data.contains("brightness")) { if (data.contains("brightness")) {
@ -347,7 +352,7 @@ void IntegrationPluginWs2812fx::onReadyRead()
rawBrightness.remove("\r\n"); rawBrightness.remove("\r\n");
int brightness = rawBrightness.toInt(); int brightness = rawBrightness.toInt();
qDebug(dcWs2812fx()) << "set brightness to:" << brightness; qCDebug(dcWs2812fx()) << "set brightness to:" << brightness;
thing->setStateValue(ws2812fxBrightnessStateTypeId, brightness); thing->setStateValue(ws2812fxBrightnessStateTypeId, brightness);
if (brightness == 0) { if (brightness == 0) {
thing->setStateValue(ws2812fxPowerStateTypeId, false); thing->setStateValue(ws2812fxPowerStateTypeId, false);
@ -364,7 +369,7 @@ void IntegrationPluginWs2812fx::onReadyRead()
rawSpeed.remove("\r\n"); rawSpeed.remove("\r\n");
int speed = data.split(':').at(1).toInt(); int speed = data.split(':').at(1).toInt();
qDebug(dcWs2812fx()) << "set speed to:" << speed; qCDebug(dcWs2812fx()) << "set speed to:" << speed;
thing->setStateValue(ws2812fxSpeedStateTypeId, speed); thing->setStateValue(ws2812fxSpeedStateTypeId, speed);
} }
if (data.contains("color")) { if (data.contains("color")) {
@ -376,7 +381,7 @@ void IntegrationPluginWs2812fx::onReadyRead()
rawColor.remove("0x"); rawColor.remove("0x");
rawColor.remove("\r\n"); rawColor.remove("\r\n");
rawColor.prepend("#"); rawColor.prepend("#");
qDebug(dcWs2812fx()) << "set color to:" << rawColor; qCDebug(dcWs2812fx()) << "set color to:" << rawColor;
thing->setStateValue(ws2812fxColorStateTypeId, rawColor); thing->setStateValue(ws2812fxColorStateTypeId, rawColor);
} }
} }
@ -397,7 +402,6 @@ void IntegrationPluginWs2812fx::onReconnectTimer()
} }
} }
} }
} }
void IntegrationPluginWs2812fx::onSerialError(QSerialPort::SerialPortError error) void IntegrationPluginWs2812fx::onSerialError(QSerialPort::SerialPortError error)
@ -415,7 +419,7 @@ void IntegrationPluginWs2812fx::onSerialError(QSerialPort::SerialPortError error
void IntegrationPluginWs2812fx::sendCommand(ThingActionInfo *info, const QByteArray &command, CommandType commandType) void IntegrationPluginWs2812fx::sendCommand(ThingActionInfo *info, const QByteArray &command, CommandType commandType)
{ {
qDebug(dcWs2812fx()) << "Sending command" << command; qCDebug(dcWs2812fx()) << "Sending command" << command;
QSerialPort *serialPort = m_serialPorts.value(info->thing()); QSerialPort *serialPort = m_serialPorts.value(info->thing());
if (!serialPort) if (!serialPort)
return info->finish(Thing::ThingErrorThingNotFound); return info->finish(Thing::ThingErrorThingNotFound);

View File

@ -1,6 +1,6 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* *
* Copyright 2013 - 2020, nymea GmbH * Copyright 2013 - 2025, nymea GmbH
* Contact: contact@nymea.io * Contact: contact@nymea.io
* *
* This file is part of nymea. * This file is part of nymea.
@ -93,7 +93,7 @@
#define FX_MODE_CUSTOM_2 58 #define FX_MODE_CUSTOM_2 58
#define FX_MODE_CUSTOM_3 59 #define FX_MODE_CUSTOM_3 59
#include "integrations/integrationplugin.h" #include <integrations/integrationplugin.h>
#include <QTimer> #include <QTimer>
#include <QSerialPort> #include <QSerialPort>
@ -134,8 +134,6 @@ private slots:
void onReconnectTimer(); void onReconnectTimer();
void onSerialError(QSerialPort::SerialPortError error); void onSerialError(QSerialPort::SerialPortError error);
signals:
}; };
#endif // INTEGRATIONPLUGINWS2812FX_H #endif // INTEGRATIONPLUGINWS2812FX_H

View File

@ -1,12 +1,9 @@
include(../plugins.pri) include(../plugins.pri)
QT += serialport QT *= serialport
TARGET = $$qtLibraryTarget(nymea_integrationpluginws2812fx)
SOURCES += \ SOURCES += \
integrationpluginws2812fx.cpp \ integrationpluginws2812fx.cpp
HEADERS += \ HEADERS += \
integrationpluginws2812fx.h \ integrationpluginws2812fx.h