mirror of
https://github.com/azaion/autopilot.git
synced 2026-04-22 22:36:34 +00:00
12 lines
219 B
C++
12 lines
219 B
C++
#pragma once
|
|
|
|
#include <QByteArray>
|
|
#include <QVariant>
|
|
|
|
class SerialResponse
|
|
{
|
|
public:
|
|
static void printResponse(QByteArray response);
|
|
static QHash<QString, QVariant> getResponceValues(QByteArray response);
|
|
};
|