Added lights panel tab to send LED commands. However we can not get in-game lighting as its on the socket not websocket. More reason for the bridge

This commit is contained in:
Jon ESA
2026-04-02 11:14:36 +01:00
parent 3dc9ee91d4
commit 9671785a14
7 changed files with 362 additions and 1 deletions

View File

@@ -5,6 +5,7 @@
#include <QWebSocket>
class GamesPanel;
class LightsPanel;
class LogPanel;
class PanelsPanel;
class PowerPanel;
@@ -31,6 +32,7 @@ public:
void setPowerPanel(PowerPanel *panel);
void setLogPanel(LogPanel *panel);
void setPanelsPanel(PanelsPanel *panel);
void setLightsPanel(LightsPanel *panel);
public slots:
void startConnection();
@@ -59,6 +61,7 @@ private:
PowerPanel *m_powerPanel = nullptr;
LogPanel *m_logPanel = nullptr;
PanelsPanel *m_panelsPanel = nullptr;
LightsPanel *m_lightsPanel = nullptr;
QStringList m_settingsKeys;
int m_rnpCount = -1;