Feat: Update HyperionClient header for raw image data and dynamic sizing.

This commit is contained in:
Tobias J. Endres 2025-08-14 23:04:00 +02:00
parent 3dda269c4b
commit f71824bb81

View File

@ -2,6 +2,8 @@
#define HYPERIONCLIENT_H
#include <QTcpSocket>
#include <QFile>
#include <QIODevice>
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