Remove max LED number constraint from Matrix layout (#1805)

This commit is contained in:
LordGrey
2024-12-09 06:21:53 +01:00
committed by GitHub
parent e8e102c25d
commit 179ee316d0
28 changed files with 231 additions and 76 deletions

View File

@@ -50,6 +50,8 @@ public:
///
void initialize();
QSharedPointer<JsonCallbacks> getCallBack() const;
public slots:
private slots:
@@ -82,7 +84,7 @@ signals:
///
/// Signal emits with the reply message provided with handleMessage()
///
void callbackMessage(QJsonObject);
void callbackReady(QJsonObject);
///
/// Signal emits whenever a JSON-message should be forwarded

View File

@@ -93,7 +93,7 @@ signals:
/// @brief Emits whenever a new json mesage callback is ready to send
/// @param The JsonObject message
///
void newCallback(QJsonObject);
void callbackReady(QJsonObject);
private slots:
///
@@ -182,6 +182,8 @@ private:
/// construct callback msg
void doCallback(Subscription::Type cmd, const QVariant& data);
void doCallback(Subscription::Type cmd, const QJsonArray& data);
void doCallback(Subscription::Type cmd, const QJsonObject& data);
Logger *_log;
Hyperion* _hyperion;