Subversion Repositories Projects

Rev

Rev 307 | Rev 396 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
307 KeyOz 1
/***************************************************************************
2
 *   Copyright (C) 2009 by Manuel Schrape                                  *
3
 *   manuel.schrape@gmx.de                                                 *
4
 *                                                                         *
5
 *   This program is free software; you can redistribute it and/or modify  *
6
 *   it under the terms of the GNU General Public License as published by  *
7
 *   the Free Software Foundation; either version 2 of the License.        *
8
 *                                                                         *
9
 *   This program is distributed in the hope that it will be useful,       *
10
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12
 *   GNU General Public License for more details.                          *
13
 *                                                                         *
14
 *   You should have received a copy of the GNU General Public License     *
15
 *   along with this program; if not, write to the                         *
16
 *   Free Software Foundation, Inc.,                                       *
17
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
18
 ***************************************************************************/
19
#ifndef DLG_MOTORMIXER_H
20
#define DLG_MOTORMIXER_H
21
 
22
#include <QObject>
23
#include <QFileDialog>
24
#include <QSettings>
25
 
26
#include "ui_dlg_MotorMixer.h"
27
#include "../Classes/cSettings.h"
28
#include "../Classes/cConnection.h"
29
#include "../typedefs.h"
391 Brean 30
//#include "../Classes/ToolBox.h"
307 KeyOz 31
#include "../global.h"
32
 
33
class dlg_MotorMixer : public QDialog, public Ui::dlg_MotorMixer_UI
34
{
35
     Q_OBJECT
36
 
37
public:
38
    dlg_MotorMixer(QWidget *parent = 0);
39
    void set_Objects(cConnection *t_Connection, cSettings *t_Settings);
40
    void set_MotorConfig(sRxData RX);
41
    void read_Mixer();
42
 
43
private:
44
    // Object für Kopter-Verbindung
45
    cConnection *o_Connection;
46
 
47
    cSettings *o_Settings;
48
 
49
    char TX_Data[150];
50
 
51
    int Motor[16][4];
52
    QString MixerName;
53
    int MixerVersion;
54
 
55
    void set_MotorData();
56
    void get_MotorData();
57
    int get_MotorConfig();
58
 
59
private slots:
60
    void slot_pb_READ();
61
    void slot_pb_WRITE();
62
    void slot_pb_LOAD();
63
    void slot_pb_SAVE();
64
    void slot_CheckValue(int Wert);
65
};
66
 
67
#endif // DLG_MOTORMIXER_H