-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfigapp.h
More file actions
46 lines (32 loc) · 805 Bytes
/
configapp.h
File metadata and controls
46 lines (32 loc) · 805 Bytes
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
#ifndef CONFIGAPP_H
#define CONFIGAPP_H
#include <QMainWindow>
#include <QSerialPortInfo>
//#include "serialport.h"
//#include "WinBase.h"
//#include "Windows.h"
#include "uwbmodule.h"
namespace Ui {
class configApp;
}
class configApp : public QMainWindow
{
Q_OBJECT
public:
explicit configApp(QWidget *parent = nullptr);
~configApp();
void updateAnchorsCallback();
private slots:
void on_connectBtn_clicked();
void on_refreshToolBtn_clicked();
void on_readSettingsBtn_clicked();
void on_uploadSettingsBtn_clicked();
void on_modeBox_currentTextChanged(const QString &arg1);
void on_saveConfig_btn_clicked();
void on_readAnchorsBtn_clicked();
private:
UwbModule module;
Ui::configApp *ui;
int update_count = 0;
};
#endif // CONFIGAPP_H