From f71824bb81ca3885fa3a599cedf29e8514e85fb0 Mon Sep 17 00:00:00 2001 From: "Tobias J. Endres" Date: Thu, 14 Aug 2025 23:04:00 +0200 Subject: [PATCH] Feat: Update HyperionClient header for raw image data and dynamic sizing. --- hyperionclient.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hyperionclient.h b/hyperionclient.h index c58dd24..646de7e 100644 --- a/hyperionclient.h +++ b/hyperionclient.h @@ -2,6 +2,8 @@ #define HYPERIONCLIENT_H #include +#include +#include class HyperionClient : public QObject { @@ -45,7 +47,8 @@ private: void _temperatureAdjustment(); public slots: - void sendImage(QString); + void sendImage(const uchar *data, int size); + void setImgSize(int width, int height); }; #endif // HYPERIONCLIENT_H