-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbluelinker.h
executable file
·84 lines (62 loc) · 1.77 KB
/
bluelinker.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
#ifndef BLUELINKER_H
#define BLUELINKER_H
#include <QTimer>
#include <QObject>
#include <qbluetoothserver.h>
#include <qbluetoothserviceinfo.h>
#include <qbluetoothlocaldevice.h>
#include <qbluetoothservicediscoveryagent.h>
static const QString serviceUuid(QStringLiteral("e8e10f95-1a70-4b27-9ccf-02010264e9c9"));
class BlueLinker: public QObject
{
Q_OBJECT
Q_PROPERTY(bool showDialog READ showDialog NOTIFY showDialogChanged)
Q_PROPERTY(QString message READ message NOTIFY showDialogChanged)
Q_PROPERTY(int role READ role NOTIFY roleChanged)
public:
BlueLinker();
~BlueLinker();
int *m_num;
QString *m_string;
bool showDialog() const;
QString message() const;
void setMessage(const QString &message);
int role() const;
public slots:
void startTalk();
void update();
void startServer();
void startClient();
void clientConnected();
void clientDisconnected();
void serverConnected();
void serverDisconnected();
void socketError(QBluetoothSocket::SocketError);
void serverError(QBluetoothServer::Error);
void serviceScanError(QBluetoothServiceDiscoveryAgent::Error);
void done();
void addService(const QBluetoothServiceInfo &);
void readSocket();
Q_SIGNALS:
void showDialogChanged();
void roleChanged();
void resultChanged();
private:
QBluetoothServer *m_serverInfo;
QBluetoothServiceInfo m_serviceInfo;
QBluetoothSocket *socket;
QBluetoothServiceDiscoveryAgent *discoveryAgent;
QTimer *m_timer;
float m_direction;
float m_targetX;
float m_targetY;
int interval;
int m_resultLeft;
int m_resultRight;
bool m_showDialog;
QString m_message;
int m_role;
bool m_serviceFound;
QString m_msg;//
};
#endif // BLUELINKER_H