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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user