minor adjustments

This commit is contained in:
2020-04-26 16:25:58 +02:00
parent 1fee46899e
commit 72a9b50298
4 changed files with 11 additions and 59 deletions

View File

@@ -10,7 +10,7 @@ class LEDHandler : public QObject
public:
QString cURL = "10.0.0.222";
int cPORT = 21324;
int cLEDNUM = 26;
int cLEDNUM = 90;
LEDHandler(QUdpSocket* sock, TS3Functions ts3Functions);
@@ -27,7 +27,7 @@ public slots:
private:
QUdpSocket* mSock;
TS3Functions mTs3Functions;
int brightness = 80;
int mBrightness = 80;
void sendColor(int R, int G, int B, int W, int t);
};