-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathglove.h
85 lines (62 loc) · 1.64 KB
/
glove.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#ifndef GLOVE_H
#define GLOVE_H
#include <QObject>
#include <QList>
/**
* @file glove.h
*
* Implementation of Glove class.
* Used to get data from the glove with sensors through the COM port.
*/
class QSerialPort;
class QByteArray;
class QString;
class QTimer;
class Glove : public QObject
{
Q_OBJECT
public:
Glove();
~Glove();
/// Try to connect port with name = portName as glove.
void connectHardwareGlove(const QString& portName);
/// Opens port.
bool startSendingData();
/// Closes port.
void stopSendingData();
/// Return true, if the port is open.
bool isDataSending() const;
/// Returns true, if portName is set.
bool isPortSet() const;
/// Returns the latest data from the sensors.
QList<int> data() const;
signals:
/// Sent when the computer reads the correct data from the glove.
void dataIsRead();
/// Sent after trying to connect. isConnected = true, if the devise is correctly connected.
void connectionTryEnd(const bool& isConnected);
protected slots:
/// Checks the received data.
void onReadyRead();
/// Do all you need, if the try of connection failed.
void connectionTry();
/// Checks if glove is connected.
void checkIsCanBeConnected();
protected:
/// Returns true if bytes has a valid header.
bool hasHeader() const;
/// Returns true if bytes has a valid tail.
bool hasTail() const;
/// Translates data about flex sensors from bytes to integer numbers.
void getDataFromFlexSensors();
void setPortSettings();
private:
QByteArray mBytes;
QList<int> mLastData;
QSerialPort *mPort;
QTimer *mPortAvailableTimer;
bool mIsGloveSet;
bool mIsStartSendingData;
bool mIsConnectionMode;
};
#endif // GLOVE_H