-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.h
82 lines (69 loc) · 1.61 KB
/
mainwindow.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
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QTimer>
#include <QTcpSocket>
#include <QDataStream>
//#include <QNetworkSession>
#include <QDialog>
#include <QMessageBox>
#include <QSerialPort>
#include <QSerialPortInfo>
#include "plot.h"
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
public slots:
void runTimer();
void updateDigitDisplay();
void AzDT();
void AzDH();
void AzDO();
void AzDD();
void AzUT();
void AzUH();
void AzUO();
void AzUD();
void ElDT();
void ElDH();
void ElDO();
void ElDD();
void ElUT();
void ElUH();
void ElUO();
void ElUD();
void requestRotorPosition();
void parseTCPIncoming();
void displayError(QAbstractSocket::SocketError socketError);
void TCPconnected();
void TCPdisconnected();
void toggleTCPConnection();
void sendOnce();
void ESTOP();
void toggleActiveTracking();
void toggleSerialConnection();
void parseSerialIncoming();
void EL2CMD();
void AZ2CMD();
private:
Ui::MainWindow *ui;
float CurrentRotorEl;
float CurrentRotorAz;
float CommandedRotorEl;
float CommandedRotorAz;
QTcpSocket *tcpSocket;
QSerialPort *serialPort;
QString TCPDataIn;
bool networkConnected;
bool serialConnected;
bool ActiveTrack;
void sendRotorPosition();
Plot *skyPlotObj; //make this a pointer so we can control when the constructor gets run
};
#endif // MAINWINDOW_H