Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 800 → Rev 801

/QMK-Groundstation/trunk/QMK-Settings/Dialogs/dlg_Main.cpp
225,7 → 225,7
 
void dlg_Main::slot_MK_ReadSettings(s_MK_Settings ps_MK_Settings)
{
if (ps_MK_Settings.Version == MK_VERSION_SETTINGS)
if (ps_MK_Settings.Revision == MK_VERSION_SETTINGS)
{
show_MK_Settings(ps_MK_Settings);
}
378,7 → 378,7
 
Setting.beginGroup("Setup");
Setting.setValue("Name", le_SetName->text());
Setting.setValue("IniVersion", 3);
Setting.setValue("IniVersion", 4);
Setting.setValue("GlobalConfig", t_Set.GlobalConfig);
Setting.setValue("GlobalConfig2", t_Set.ExtraConfig);
Setting.endGroup();
428,6 → 428,7
Setting.setValue("ACC_Gyro-Factor", t_Set.GyroAccFaktor);
Setting.setValue("ACC_Gyro-Compensation", t_Set.GyroAccAbgleich);
Setting.setValue("DriftCompensation", t_Set.Driftkomp);
Setting.setValue("Stability", t_Set.Gyro_Stability);
Setting.setValue("Main-I", t_Set.I_Faktor);
Setting.endGroup();
 
451,12 → 452,14
Setting.endGroup();
 
Setting.beginGroup("Others");
Setting.setValue("MinGas", t_Set.Gas_Min);
Setting.setValue("MaxGas", t_Set.Gas_Max);
Setting.setValue("Compass-Effect", t_Set.KompassWirkung);
Setting.setValue("UnderVoltage", t_Set.UnterspannungsWarnung);
Setting.setValue("NotGas", t_Set.NotGas);
Setting.setValue("NotGasTime", t_Set.NotGasZeit);
Setting.setValue("MinGas", t_Set.Gas_Min);
Setting.setValue("MaxGas", t_Set.Gas_Max);
Setting.setValue("Compass-Effect", t_Set.KompassWirkung);
Setting.setValue("UnderVoltage", t_Set.UnterspannungsWarnung);
Setting.setValue("NotGas", t_Set.NotGas);
Setting.setValue("NotGasTime", t_Set.NotGasZeit);
Setting.setValue("Orientation", t_Set.OrientationAngle);
Setting.setValue("CarefreeControl", t_Set.OrientationModeControl);
Setting.endGroup();
 
Setting.beginGroup("Coupling");
581,6 → 584,7
t_Set.GyroAccFaktor = Setting.value("ACC_Gyro-Factor", 30).toInt();
t_Set.GyroAccAbgleich = Setting.value("ACC_Gyro-Compensation", 32).toInt();
t_Set.Driftkomp = Setting.value("DriftCompensation", 32).toInt();
t_Set.Gyro_Stability = Setting.value("Stability", 4).toInt();
t_Set.I_Faktor = Setting.value("Main-I", 32).toInt();
Setting.endGroup();
 
604,12 → 608,15
Setting.endGroup();
 
Setting.beginGroup("Others");
t_Set.Gas_Min = Setting.value("MinGas", 8).toInt();
t_Set.Gas_Max = Setting.value("MaxGas", 230).toInt();
t_Set.KompassWirkung = Setting.value("Compass-Effect", 128).toInt();
t_Set.UnterspannungsWarnung = Setting.value("UnderVoltage", 99).toInt();
t_Set.NotGas = Setting.value("NotGas", 35).toInt();
t_Set.NotGasZeit = Setting.value("NotGasTime", 30).toInt();
t_Set.Gas_Min = Setting.value("MinGas", 8).toInt();
t_Set.Gas_Max = Setting.value("MaxGas", 230).toInt();
t_Set.KompassWirkung = Setting.value("Compass-Effect", 128).toInt();
t_Set.UnterspannungsWarnung = Setting.value("UnderVoltage", 99).toInt();
t_Set.NotGas = Setting.value("NotGas", 35).toInt();
t_Set.NotGasZeit = Setting.value("NotGasTime", 30).toInt();
 
t_Set.OrientationAngle = Setting.value("Orientation", 0).toInt();
t_Set.OrientationModeControl = Setting.value("CarefreeControl", 252).toInt();
Setting.endGroup();
 
Setting.beginGroup("Coupling");
670,11 → 677,14
}
}
 
void dlg_Main::show_MK_Settings(s_MK_Settings t_Set) // DONE 0.75i
void dlg_Main::show_MK_Settings(s_MK_Settings t_Set) // DONE 0.80g
{
sb_Set->setValue(int(t_Set.Index));
 
le_SetName->setText(QString(t_Set.Name));
 
sb_0_1->setValue(t_Set.OrientationAngle);
 
// Seite 1
{
s_1_1_cb->setChecked(t_Set.GlobalConfig & CFG_HOEHENREGELUNG);
747,6 → 757,7
sb_5_7->setValue(t_Set.Driftkomp);
cb_5_9 = setCombo(cb_5_9, t_Set.Gyro_Gier_P);
cb_5_10 = setCombo(cb_5_10, t_Set.Gyro_Gier_I);
cb_5_11 = setCombo(cb_5_11, t_Set.Gyro_Stability);
}
// Seite 6
{
778,6 → 789,8
sb_7_4->setValue(t_Set.UnterspannungsWarnung);
sb_7_5->setValue(t_Set.NotGasZeit);
sb_7_6->setValue(t_Set.NotGas);
cb_7_7 = setCombo(cb_7_7, t_Set.OrientationModeControl);
 
}
// Seite 8
{
899,8 → 912,10
 
memcpy(t_Set.Name, le_SetName->text().toLatin1().data(), 12);
t_Set.Index = sb_Set->value();
t_Set.Version = MK_VERSION_SETTINGS;
t_Set.Revision = MK_VERSION_SETTINGS;
 
t_Set.OrientationAngle = sb_0_1->value();
 
// Seite 1
{
t_Set.GlobalConfig = 0;
977,6 → 992,7
t_Set.Driftkomp = sb_5_7->value();
t_Set.Gyro_Gier_P = get_Value(cb_5_9);
t_Set.Gyro_Gier_I = get_Value(cb_5_10);
t_Set.Gyro_Stability = get_Value(cb_5_11);
}
// Seite 6
{
1003,12 → 1019,13
}
// Seite 7
{
t_Set.Gas_Min = sb_7_1->value();
t_Set.Gas_Max = sb_7_2->value();
t_Set.KompassWirkung = get_Value(cb_7_3);
t_Set.UnterspannungsWarnung = sb_7_4->value();
t_Set.NotGasZeit = sb_7_5->value();
t_Set.NotGas = sb_7_6->value();
t_Set.Gas_Min = sb_7_1->value();
t_Set.Gas_Max = sb_7_2->value();
t_Set.KompassWirkung = get_Value(cb_7_3);
t_Set.UnterspannungsWarnung = sb_7_4->value();
t_Set.NotGasZeit = sb_7_5->value();
t_Set.NotGas = sb_7_6->value();
t_Set.OrientationModeControl = get_Value(cb_7_7);
}
// Seite 8
{
/QMK-Groundstation/trunk/QMK-Settings/Dialogs/dlg_Main.ui
6,8 → 6,8
<rect>
<x>0</x>
<y>0</y>
<width>778</width>
<height>366</height>
<width>753</width>
<height>353</height>
</rect>
</property>
<property name="windowTitle">
18,9 → 18,78
<normaloff>:/Icon/Global/Images/Icons/QMK-Settings.png</normaloff>:/Icon/Global/Images/Icons/QMK-Settings.png</iconset>
</property>
<widget class="QWidget" name="centralWidget">
<layout class="QGridLayout" name="gridLayout_25">
<layout class="QGridLayout" name="gridLayout_28">
<item row="0" column="0" colspan="2">
<widget class="wgt_Connection" name="wg_Connection" native="true"/>
</item>
<item row="0" column="2">
<widget class="QFrame" name="frame">
<property name="frameShape">
<enum>QFrame::StyledPanel</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Raised</enum>
</property>
<layout class="QGridLayout" name="gridLayout_27">
<property name="margin">
<number>0</number>
</property>
<item row="0" column="0">
<widget class="QWidget" name="wg_Set" native="true">
<layout class="QGridLayout" name="gridLayout_8">
<property name="topMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item row="0" column="0">
<widget class="QLabel" name="label_146">
<property name="text">
<string>Parametersatz</string>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QSpinBox" name="sb_Set">
<property name="minimum">
<number>1</number>
</property>
<property name="maximum">
<number>5</number>
</property>
</widget>
</item>
<item row="0" column="2">
<widget class="QLineEdit" name="le_SetName">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>100</width>
<height>0</height>
</size>
</property>
</widget>
</item>
</layout>
</widget>
</item>
</layout>
</widget>
</item>
<item row="1" column="0">
<widget class="QListWidget" name="listWidget">
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Expanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>100</width>
34,11 → 103,7
</size>
</property>
<property name="font">
<font>
<pointsize>8</pointsize>
<weight>50</weight>
<bold>false</bold>
</font>
<font/>
</property>
<item>
<property name="text">
300,10 → 365,7
<item row="0" column="0" colspan="3">
<widget class="QCheckBox" name="s_1_1_cb">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Höhenregelung</string>
313,10 → 375,7
<item row="1" column="0" colspan="3">
<widget class="QCheckBox" name="s_1_4_cb">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>GPS aktiv</string>
326,10 → 385,7
<item row="2" column="0" rowspan="2" colspan="3">
<widget class="QCheckBox" name="s_1_2_cb">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Kompass</string>
358,10 → 414,7
<item row="5" column="0" colspan="3">
<widget class="QCheckBox" name="s_1_5_cb">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Erweiterte Empfangssignalprüfung</string>
371,10 → 424,7
<item row="6" column="0" colspan="3">
<widget class="QCheckBox" name="s_1_6_cb">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Achs-(ent-)kopplung</string>
384,10 → 434,7
<item row="7" column="0" colspan="3">
<widget class="QCheckBox" name="s_1_7_cb">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Drehratenbegrenzung</string>
397,10 → 444,7
<item row="8" column="0" colspan="3">
<widget class="QCheckBox" name="s_1_8_cb">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Heading Hold (Nick/Roll)</string>
423,10 → 467,7
<item row="4" column="1">
<widget class="QCheckBox" name="s_1_3_cb">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Feste Ausrichtung</string>
452,10 → 493,7
<item row="0" column="0">
<widget class="QLabel" name="label_5">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Gas:</string>
529,10 → 567,7
<item row="0" column="3">
<widget class="QLabel" name="label_11">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Poti 3:</string>
666,10 → 701,7
<item row="1" column="0">
<widget class="QLabel" name="label_6">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Gier:</string>
743,10 → 775,7
<item row="1" column="3">
<widget class="QLabel" name="label_12">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Poti 4:</string>
880,10 → 909,7
<item row="2" column="0">
<widget class="QLabel" name="label_7">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Nick:</string>
957,10 → 983,7
<item row="2" column="3">
<widget class="QLabel" name="label_32">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Poti 5:</string>
1094,10 → 1117,7
<item row="3" column="0">
<widget class="QLabel" name="label_8">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Roll:</string>
1171,10 → 1191,7
<item row="3" column="3">
<widget class="QLabel" name="label_34">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Poti 6:</string>
1308,10 → 1325,7
<item row="4" column="0">
<widget class="QLabel" name="label_9">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Poti 1:</string>
1445,10 → 1459,7
<item row="4" column="3">
<widget class="QLabel" name="label_33">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Poti 7:</string>
1582,10 → 1593,7
<item row="5" column="0">
<widget class="QLabel" name="label_10">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Poti 2:</string>
1719,10 → 1727,7
<item row="5" column="3">
<widget class="QLabel" name="label_35">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Poti 8:</string>
1871,10 → 1876,7
<item>
<widget class="QLabel" name="label_155">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Empfänger wählen:</string>
2971,10 → 2973,7
<item row="1" column="0" colspan="2">
<widget class="QCheckBox" name="s_2_9_cb">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Erweiterte Empfangssignalprüfung</string>
3003,10 → 3002,7
<item row="0" column="0">
<widget class="QLabel" name="label_19">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Nick / Roll P-Anteil:</string>
3026,10 → 3022,7
<item row="1" column="0">
<widget class="QLabel" name="label_20">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Nick / Roll D-Anteil:</string>
3065,10 → 3058,7
<item row="3" column="0">
<widget class="QLabel" name="label_21">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Gier P-Anteil:</string>
3144,10 → 3134,7
<item row="5" column="0">
<widget class="QLabel" name="label_51">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Externe Kontrolle:</string>
3331,10 → 3318,7
<item row="0" column="0">
<widget class="QCheckBox" name="s_4_1_cb">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Höhenregelung aktiv</string>
3375,10 → 3359,7
<item row="0" column="1" colspan="2">
<widget class="QRadioButton" name="s_4_2_rb">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Höhenbegrenzung</string>
3391,10 → 3372,7
<item row="0" column="3" colspan="3">
<widget class="QCheckBox" name="s_4_4_cb">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Schalter für Höhe</string>
3404,10 → 3382,7
<item row="1" column="1" colspan="2">
<widget class="QRadioButton" name="s_4_3_rb">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Vario-Höhe</string>
3420,10 → 3395,7
<bool>false</bool>
</property>
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>akustisches Variometer</string>
3433,10 → 3405,7
<item row="3" column="0" colspan="2">
<widget class="QLabel" name="label_25">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Sollwert:</string>
3498,10 → 3467,7
<item row="4" column="0" colspan="2">
<widget class="QLabel" name="label_26">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Min. Gas:</string>
3518,10 → 3484,7
<item row="5" column="0" colspan="2">
<widget class="QLabel" name="label_27">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Höhe P-Anteil:</string>
3583,10 → 3546,7
<item row="13" column="0" colspan="2">
<widget class="QLabel" name="label_29">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Z-ACC Wirkung:</string>
3700,10 → 3660,7
<item row="6" column="0" colspan="2">
<widget class="QLabel" name="label_28">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Luftdruck D-Anteil:</string>
3732,10 → 3689,7
<bool>false</bool>
</property>
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Verstärkung/Rate:</string>
3755,10 → 3709,7
<item row="4" column="3">
<widget class="QLabel" name="label_109">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Schwebe-Gas +/-:</string>
3775,10 → 3726,7
<item row="5" column="3">
<widget class="QLabel" name="label_114">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>GPS Z:</string>
3843,10 → 3791,7
<bool>false</bool>
</property>
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Stick Neutral-Punkt:</string>
3859,8 → 3804,11
<bool>false</bool>
</property>
<property name="maximum">
<number>50</number>
<number>240</number>
</property>
<property name="value">
<number>120</number>
</property>
</widget>
</item>
<item row="13" column="3" colspan="2">
3931,7 → 3879,7
</property>
</widget>
</item>
<item row="0" column="3">
<item row="0" column="0">
<widget class="QFrame" name="frame_7">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Preferred">
3945,574 → 3893,601
<property name="frameShadow">
<enum>QFrame::Raised</enum>
</property>
<layout class="QGridLayout" name="gridLayout_3">
<layout class="QGridLayout" name="gridLayout_25">
<item row="0" column="0">
<widget class="QLabel" name="label_37">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>Gyro P-Anteil:</string>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QComboBox" name="cb_5_1">
<property name="editable">
<bool>true</bool>
</property>
<item>
<property name="text">
<string>Poti 1</string>
</property>
<layout class="QGridLayout" name="gridLayout_3">
<item row="0" column="0">
<widget class="QLabel" name="label_37">
<property name="font">
<font/>
</property>
<property name="text">
<string>Gyro P-Anteil:</string>
</property>
</widget>
</item>
<item>
<property name="text">
<string>Poti 2</string>
</property>
<item row="0" column="1">
<widget class="QComboBox" name="cb_5_1">
<property name="minimumSize">
<size>
<width>80</width>
<height>0</height>
</size>
</property>
<property name="editable">
<bool>true</bool>
</property>
<item>
<property name="text">
<string>Poti 1</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 2</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 3</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 4</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 5</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 6</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 7</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 8</string>
</property>
</item>
<item>
<property name="text">
<string>0</string>
</property>
</item>
</widget>
</item>
<item>
<property name="text">
<string>Poti 3</string>
</property>
<item row="0" column="2">
<widget class="QLabel" name="label_44">
<property name="font">
<font/>
</property>
<property name="text">
<string>Gier P-Anteil</string>
</property>
</widget>
</item>
<item>
<property name="text">
<string>Poti 4</string>
</property>
<item row="0" column="3">
<widget class="QComboBox" name="cb_5_9">
<property name="minimumSize">
<size>
<width>80</width>
<height>0</height>
</size>
</property>
<property name="editable">
<bool>true</bool>
</property>
<item>
<property name="text">
<string>Poti 1</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 2</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 3</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 4</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 5</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 6</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 7</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 8</string>
</property>
</item>
<item>
<property name="text">
<string>0</string>
</property>
</item>
</widget>
</item>
<item>
<property name="text">
<string>Poti 5</string>
</property>
<item row="1" column="0">
<widget class="QLabel" name="label_38">
<property name="font">
<font/>
</property>
<property name="text">
<string>Gyro I-Anteil:</string>
</property>
</widget>
</item>
<item>
<property name="text">
<string>Poti 6</string>
</property>
<item row="1" column="1">
<widget class="QComboBox" name="cb_5_2">
<property name="editable">
<bool>true</bool>
</property>
<item>
<property name="text">
<string>Poti 1</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 2</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 3</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 4</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 5</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 6</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 7</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 8</string>
</property>
</item>
<item>
<property name="text">
<string>0</string>
</property>
</item>
</widget>
</item>
<item>
<property name="text">
<string>Poti 7</string>
</property>
<item row="1" column="2">
<widget class="QLabel" name="label_45">
<property name="font">
<font/>
</property>
<property name="text">
<string>Gier I-Anteil</string>
</property>
</widget>
</item>
<item>
<property name="text">
<string>Poti 8</string>
</property>
<item row="1" column="3">
<widget class="QComboBox" name="cb_5_10">
<property name="editable">
<bool>true</bool>
</property>
<item>
<property name="text">
<string>Poti 1</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 2</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 3</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 4</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 5</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 6</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 7</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 8</string>
</property>
</item>
<item>
<property name="text">
<string>0</string>
</property>
</item>
</widget>
</item>
<item>
<property name="text">
<string>0</string>
</property>
<item row="2" column="0">
<widget class="QLabel" name="label_135">
<property name="font">
<font/>
</property>
<property name="text">
<string>Gyro D-Anteil:</string>
</property>
</widget>
</item>
</widget>
</item>
<item row="0" column="2">
<widget class="QLabel" name="label_44">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>Gier P-Anteil</string>
</property>
</widget>
</item>
<item row="0" column="3">
<widget class="QComboBox" name="cb_5_9">
<property name="editable">
<bool>true</bool>
</property>
<item>
<property name="text">
<string>Poti 1</string>
</property>
<item row="2" column="1">
<widget class="QComboBox" name="cb_5_8">
<property name="editable">
<bool>true</bool>
</property>
<item>
<property name="text">
<string>Poti 1</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 2</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 3</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 4</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 5</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 6</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 7</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 8</string>
</property>
</item>
<item>
<property name="text">
<string>0</string>
</property>
</item>
</widget>
</item>
<item>
<property name="text">
<string>Poti 2</string>
</property>
<item row="3" column="0">
<widget class="QLabel" name="label_160">
<property name="text">
<string/>
</property>
</widget>
</item>
<item>
<property name="text">
<string>Poti 3</string>
</property>
<item row="4" column="0">
<widget class="QLabel" name="label_39">
<property name="font">
<font/>
</property>
<property name="text">
<string>Dynamische Stabilität:</string>
</property>
</widget>
</item>
<item>
<property name="text">
<string>Poti 4</string>
</property>
<item row="4" column="1">
<widget class="QComboBox" name="cb_5_3">
<property name="editable">
<bool>true</bool>
</property>
<item>
<property name="text">
<string>Poti 1</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 2</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 3</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 4</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 5</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 6</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 7</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 8</string>
</property>
</item>
<item>
<property name="text">
<string>0</string>
</property>
</item>
</widget>
</item>
<item>
<property name="text">
<string>Poti 5</string>
</property>
<item row="4" column="2">
<widget class="QLabel" name="label_43">
<property name="font">
<font/>
</property>
<property name="text">
<string>Driftkompensation:</string>
</property>
</widget>
</item>
<item>
<property name="text">
<string>Poti 6</string>
</property>
<item row="4" column="3">
<widget class="QSpinBox" name="sb_5_7">
<property name="maximum">
<number>250</number>
</property>
</widget>
</item>
<item>
<property name="text">
<string>Poti 7</string>
</property>
<item row="5" column="0">
<widget class="QLabel" name="label_108">
<property name="text">
<string/>
</property>
</widget>
</item>
<item>
<property name="text">
<string>Poti 8</string>
</property>
<item row="6" column="0">
<widget class="QLabel" name="label_40">
<property name="font">
<font/>
</property>
<property name="text">
<string>ACC/Gyro-Faktor:</string>
</property>
</widget>
</item>
<item>
<property name="text">
<string>0</string>
</property>
</item>
</widget>
</item>
<item row="9" column="0">
<widget class="QLabel" name="label_40">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>ACC/Gyro-Faktor:</string>
</property>
</widget>
</item>
<item row="9" column="1">
<widget class="QSpinBox" name="sb_5_4">
<property name="maximum">
<number>250</number>
</property>
</widget>
</item>
<item row="5" column="2">
<widget class="QLabel" name="label_43">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>Driftkompensation:</string>
</property>
</widget>
</item>
<item row="1" column="3">
<widget class="QComboBox" name="cb_5_10">
<property name="editable">
<bool>true</bool>
</property>
<item>
<property name="text">
<string>Poti 1</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 2</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 3</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 4</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 5</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 6</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 7</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 8</string>
</property>
</item>
<item>
<property name="text">
<string>0</string>
</property>
</item>
</widget>
</item>
<item row="1" column="2">
<widget class="QLabel" name="label_45">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>Gier I-Anteil</string>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QComboBox" name="cb_5_2">
<property name="editable">
<bool>true</bool>
</property>
<item>
<property name="text">
<string>Poti 1</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 2</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 3</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 4</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 5</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 6</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 7</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 8</string>
</property>
</item>
<item>
<property name="text">
<string>0</string>
</property>
</item>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="label_38">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>Gyro I-Anteil:</string>
</property>
</widget>
</item>
<item row="5" column="3">
<widget class="QSpinBox" name="sb_5_7">
<property name="maximum">
<number>250</number>
</property>
</widget>
</item>
<item row="3" column="1">
<widget class="QComboBox" name="cb_5_8">
<property name="editable">
<bool>true</bool>
</property>
<item>
<property name="text">
<string>Poti 1</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 2</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 3</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 4</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 5</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 6</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 7</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 8</string>
</property>
</item>
<item>
<property name="text">
<string>0</string>
</property>
</item>
</widget>
</item>
<item row="3" column="0">
<widget class="QLabel" name="label_135">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>Gyro D-Anteil:</string>
</property>
</widget>
</item>
<item row="5" column="1">
<widget class="QComboBox" name="cb_5_3">
<property name="editable">
<bool>true</bool>
</property>
<item>
<property name="text">
<string>Poti 1</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 2</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 3</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 4</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 5</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 6</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 7</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 8</string>
</property>
</item>
<item>
<property name="text">
<string>0</string>
</property>
</item>
</widget>
</item>
<item row="5" column="0">
<widget class="QLabel" name="label_39">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>Dynamische Stabilität:</string>
</property>
</widget>
</item>
<item row="12" column="0">
<spacer name="verticalSpacer_10">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
<item row="4" column="1">
<spacer name="verticalSpacer_12">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
<item row="6" column="1">
<spacer name="verticalSpacer_13">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
<item row="9" column="2">
<widget class="QLabel" name="label_41">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>ACC/Gyro-Komp.:</string>
</property>
</widget>
</item>
<item row="9" column="3">
<layout class="QHBoxLayout" name="horizontalLayout_3">
<item>
<widget class="QSpinBox" name="sb_5_5">
<item row="6" column="1">
<widget class="QSpinBox" name="sb_5_4">
<property name="maximum">
<number>250</number>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label_48">
<item row="6" column="2">
<widget class="QLabel" name="label_41">
<property name="font">
<font/>
</property>
<property name="text">
<string>(1/x)</string>
<string>ACC/Gyro-Komp.:</string>
</property>
</widget>
</item>
</layout>
</item>
<item row="11" column="0">
<widget class="QLabel" name="label_42">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>Hauptregler I-Anteil:</string>
</property>
</widget>
</item>
<item row="11" column="1">
<widget class="QComboBox" name="cb_5_6">
<property name="editable">
<bool>true</bool>
</property>
<item>
<property name="text">
<string>Poti 1</string>
</property>
<item row="6" column="3">
<layout class="QHBoxLayout" name="horizontalLayout_3">
<item>
<widget class="QSpinBox" name="sb_5_5">
<property name="maximum">
<number>250</number>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label_48">
<property name="text">
<string>(1/x)</string>
</property>
</widget>
</item>
</layout>
</item>
<item>
<property name="text">
<string>Poti 2</string>
</property>
<item row="8" column="0">
<widget class="QLabel" name="label_42">
<property name="font">
<font/>
</property>
<property name="text">
<string>Hauptregler I-Anteil:</string>
</property>
</widget>
</item>
<item>
<property name="text">
<string>Poti 3</string>
</property>
<item row="8" column="1">
<widget class="QComboBox" name="cb_5_6">
<property name="editable">
<bool>true</bool>
</property>
<item>
<property name="text">
<string>Poti 1</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 2</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 3</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 4</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 5</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 6</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 7</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 8</string>
</property>
</item>
<item>
<property name="text">
<string>0</string>
</property>
</item>
</widget>
</item>
<item>
<property name="text">
<string>Poti 4</string>
</property>
<item row="8" column="2">
<widget class="QLabel" name="label">
<property name="text">
<string>Gyro stabilität</string>
</property>
</widget>
</item>
<item>
<property name="text">
<string>Poti 5</string>
</property>
<item row="8" column="3">
<widget class="QComboBox" name="cb_5_11">
<property name="editable">
<bool>true</bool>
</property>
<item>
<property name="text">
<string>Poti 1</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 2</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 3</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 4</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 5</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 6</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 7</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 8</string>
</property>
</item>
<item>
<property name="text">
<string>0</string>
</property>
</item>
</widget>
</item>
<item>
<property name="text">
<string>Poti 6</string>
</property>
<item row="7" column="0">
<widget class="QLabel" name="label_161">
<property name="text">
<string/>
</property>
</widget>
</item>
<item>
<property name="text">
<string>Poti 7</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 8</string>
</property>
</item>
<item>
<property name="text">
<string>0</string>
</property>
</item>
</widget>
</layout>
</item>
<item row="10" column="1">
<spacer name="verticalSpacer_15">
<item row="1" column="0">
<spacer name="verticalSpacer_7">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
4583,10 → 4558,7
<item row="0" column="1">
<widget class="QLabel" name="label_137">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Nick</string>
4596,10 → 4568,7
<item row="0" column="3">
<widget class="QLabel" name="label_138">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Roll</string>
4609,10 → 4578,7
<item row="1" column="0">
<widget class="QLabel" name="label_55">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Servo Ansteuerung:</string>
4726,10 → 4692,7
<item row="2" column="0">
<widget class="QLabel" name="label_56">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Kompensation:</string>
4753,10 → 4716,7
<item row="3" column="0">
<widget class="QLabel" name="label_130">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Richtung umkehren</string>
4780,10 → 4740,7
<item row="4" column="0">
<widget class="QLabel" name="label_57">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Servo min:</string>
4807,10 → 4764,7
<item row="5" column="0">
<widget class="QLabel" name="label_58">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Servo max:</string>
4872,10 → 4826,7
<item>
<widget class="QLabel" name="label_59">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Ansteuergeschwindigkeit</string>
4938,10 → 4889,7
<item row="0" column="0">
<widget class="QLabel" name="label_156">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Servo 3:</string>
4950,6 → 4898,12
</item>
<item row="0" column="1">
<widget class="QComboBox" name="cb_6_12">
<property name="minimumSize">
<size>
<width>80</width>
<height>0</height>
</size>
</property>
<property name="editable">
<bool>true</bool>
</property>
5003,10 → 4957,7
<item row="0" column="2">
<widget class="QLabel" name="label_157">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Servo 4:</string>
5015,6 → 4966,12
</item>
<item row="0" column="3">
<widget class="QComboBox" name="cb_6_13">
<property name="minimumSize">
<size>
<width>80</width>
<height>0</height>
</size>
</property>
<property name="editable">
<bool>true</bool>
</property>
5068,10 → 5025,7
<item row="1" column="0">
<widget class="QLabel" name="label_158">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Servo 5:</string>
5147,7 → 5101,7
</item>
</layout>
</item>
<item row="3" column="0">
<item row="6" column="0">
<spacer name="verticalSpacer">
<property name="orientation">
<enum>Qt::Vertical</enum>
5167,6 → 5121,38
</widget>
<widget class="QWidget" name="Seite_7">
<layout class="QGridLayout" name="gridLayout_38">
<item row="0" column="1">
<widget class="QTextEdit" name="te_Help_7">
<property name="minimumSize">
<size>
<width>180</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>180</width>
<height>16777215</height>
</size>
</property>
<property name="readOnly">
<bool>true</bool>
</property>
<property name="html">
<string>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;Bei Empfangsverlust: Geht der Funkempfang verloren (außer Reichweite oder Sender aus), tritt die Not-Gas-Regelung in Kraft um dem Piloten Zeit für Gegenmaßnahmen zu geben. Die gesamte Not-Gas-Regelung wird allerdings erst aktiv, wenn ein Gas-Wert von 40 für mindestens 4 Sekunden überschritten war (d.h. der Kopter wahrscheinlich fliegt)! &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:1; text-indent:1px;&quot;&gt;&lt;span style=&quot; font-size:11pt; font-weight:600;&quot;&gt;Min.Gas &lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;Minimaler Gaswert, der an die Motoren geht &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:1; text-indent:1px;&quot;&gt;&lt;span style=&quot; font-size:11pt; font-weight:600;&quot;&gt;Max.Gas &lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;Maximaler Gaswert, der an die Motoren geht. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:1; text-indent:1px;&quot;&gt;&lt;span style=&quot; font-size:11pt; font-weight:600;&quot;&gt;Kompasswirkung &lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;:Ist ein Kompass angeschlossen, kann hiermit der Einfluss auf Gier eingestellt werden &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:1; text-indent:1px;&quot;&gt;&lt;span style=&quot; font-size:11pt; font-weight:600;&quot;&gt;Unterspannung &lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;Schwellwert in 0,1V zum Melden der Akku-Unterspannung &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:1; text-indent:1px;&quot;&gt;&lt;span style=&quot; font-size:11pt; font-weight:600;&quot;&gt;Not-Gas Zeit [0.1s]:&lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt; Hier wird die Zeit in Zehntelsekunden eingetragen, für die das Not-Gas nach Empfangsverlust aktiv wird. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:1; text-indent:1px;&quot;&gt;&lt;span style=&quot; font-size:11pt; font-weight:600;&quot;&gt;Not-Gas:&lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt; Wert für das Not-Gas. &lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
</widget>
</item>
<item row="0" column="0">
<widget class="QFrame" name="frame_9">
<property name="sizePolicy">
5181,266 → 5167,300
<property name="frameShadow">
<enum>QFrame::Raised</enum>
</property>
<layout class="QGridLayout" name="gridLayout_23">
<layout class="QGridLayout" name="gridLayout_26">
<item row="0" column="0">
<widget class="QLabel" name="label_68">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>Min. Gas:</string>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QSpinBox" name="sb_7_1">
<property name="maximum">
<number>250</number>
</property>
</widget>
</item>
<item row="0" column="2">
<widget class="QLabel" name="label_67">
<property name="text">
<string/>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="label_65">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>Max. Gas:</string>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QSpinBox" name="sb_7_2">
<property name="maximum">
<number>250</number>
</property>
</widget>
</item>
<item row="1" column="2">
<widget class="QLabel" name="label_64">
<property name="text">
<string/>
</property>
</widget>
</item>
<item row="3" column="0">
<widget class="QLabel" name="label_66">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>Kompass-Wirkung:</string>
</property>
</widget>
</item>
<item row="3" column="1">
<widget class="QComboBox" name="cb_7_3">
<property name="editable">
<bool>true</bool>
</property>
<item>
<property name="text">
<string>Poti 1</string>
</property>
<layout class="QGridLayout" name="gridLayout_23">
<item row="0" column="0">
<widget class="QLabel" name="label_68">
<property name="font">
<font/>
</property>
<property name="text">
<string>Min. Gas:</string>
</property>
</widget>
</item>
<item>
<property name="text">
<string>Poti 2</string>
</property>
<item row="0" column="1">
<widget class="QSpinBox" name="sb_7_1">
<property name="maximum">
<number>250</number>
</property>
</widget>
</item>
<item>
<property name="text">
<string>Poti 3</string>
</property>
<item row="0" column="2">
<widget class="QLabel" name="label_67">
<property name="text">
<string/>
</property>
</widget>
</item>
<item>
<property name="text">
<string>Poti 4</string>
</property>
<item row="1" column="0">
<widget class="QLabel" name="label_65">
<property name="font">
<font/>
</property>
<property name="text">
<string>Max. Gas:</string>
</property>
</widget>
</item>
<item>
<property name="text">
<string>Poti 5</string>
</property>
<item row="1" column="1">
<widget class="QSpinBox" name="sb_7_2">
<property name="maximum">
<number>250</number>
</property>
</widget>
</item>
<item>
<property name="text">
<string>Poti 6</string>
</property>
<item row="1" column="2">
<widget class="QLabel" name="label_64">
<property name="text">
<string/>
</property>
</widget>
</item>
<item>
<property name="text">
<string>Poti 7</string>
</property>
<item row="2" column="2">
<widget class="QLabel" name="label_60">
<property name="text">
<string/>
</property>
</widget>
</item>
<item>
<property name="text">
<string>Poti 8</string>
</property>
<item row="3" column="0">
<widget class="QLabel" name="label_66">
<property name="font">
<font/>
</property>
<property name="text">
<string>Kompass-Wirkung:</string>
</property>
</widget>
</item>
<item>
<property name="text">
<string>0</string>
</property>
<item row="5" column="0">
<widget class="QLabel" name="label_159">
<property name="text">
<string>Carefree Seuerung</string>
</property>
</widget>
</item>
</widget>
</item>
<item row="3" column="2">
<widget class="QLabel" name="label_60">
<property name="text">
<string/>
</property>
</widget>
</item>
<item row="4" column="1">
<spacer name="verticalSpacer_7">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeType">
<enum>QSizePolicy::Fixed</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>10</height>
</size>
</property>
</spacer>
</item>
<item row="5" column="0">
<widget class="QLabel" name="label_70">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>Unterspannung [0.1V]:</string>
</property>
</widget>
</item>
<item row="5" column="1">
<widget class="QSpinBox" name="sb_7_4">
<property name="maximum">
<number>250</number>
</property>
</widget>
</item>
<item row="5" column="2">
<widget class="QLabel" name="label_69">
<property name="text">
<string/>
</property>
</widget>
</item>
<item row="7" column="0" colspan="3">
<widget class="QLabel" name="label_75">
<property name="text">
<string>Bei Empfangsverlust:</string>
</property>
</widget>
</item>
<item row="8" column="0">
<widget class="QLabel" name="label_72">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>Not-Gas Zeit [0.1s]:</string>
</property>
</widget>
</item>
<item row="8" column="1">
<widget class="QSpinBox" name="sb_7_5">
<property name="maximum">
<number>250</number>
</property>
</widget>
</item>
<item row="8" column="2">
<widget class="QLabel" name="label_71">
<property name="text">
<string/>
</property>
</widget>
</item>
<item row="10" column="0">
<widget class="QLabel" name="label_74">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>Not-Gas:</string>
</property>
</widget>
</item>
<item row="10" column="1">
<widget class="QSpinBox" name="sb_7_6">
<property name="maximum">
<number>250</number>
</property>
</widget>
</item>
<item row="10" column="2">
<widget class="QLabel" name="label_73">
<property name="text">
<string/>
</property>
</widget>
</item>
<item row="2" column="1">
<spacer name="verticalSpacer_9">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeType">
<enum>QSizePolicy::Fixed</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>61</width>
<height>10</height>
</size>
</property>
</spacer>
</item>
<item row="6" column="0" colspan="3">
<widget class="QLabel" name="label_142">
<property name="text">
<string>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
<item row="5" column="1">
<widget class="QComboBox" name="cb_7_7">
<property name="editable">
<bool>true</bool>
</property>
<item>
<property name="text">
<string>Poti 1</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 2</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 3</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 4</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 5</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 6</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 7</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 8</string>
</property>
</item>
<item>
<property name="text">
<string>0</string>
</property>
</item>
</widget>
</item>
<item row="6" column="2">
<widget class="QLabel" name="label_69">
<property name="text">
<string/>
</property>
</widget>
</item>
<item row="7" column="0">
<widget class="QLabel" name="label_70">
<property name="font">
<font/>
</property>
<property name="text">
<string>Unterspannung [0.1V]:</string>
</property>
</widget>
</item>
<item row="7" column="1">
<widget class="QSpinBox" name="sb_7_4">
<property name="maximum">
<number>250</number>
</property>
</widget>
</item>
<item row="8" column="2">
<widget class="QLabel" name="label_71">
<property name="text">
<string/>
</property>
</widget>
</item>
<item row="9" column="0">
<widget class="QLabel" name="label_75">
<property name="text">
<string>Bei Empfangsverlust:</string>
</property>
</widget>
</item>
<item row="9" column="2">
<widget class="QLabel" name="label_73">
<property name="text">
<string/>
</property>
</widget>
</item>
<item row="10" column="0">
<widget class="QLabel" name="label_72">
<property name="font">
<font/>
</property>
<property name="text">
<string>Not-Gas Zeit [0.1s]:</string>
</property>
</widget>
</item>
<item row="10" column="1">
<widget class="QSpinBox" name="sb_7_5">
<property name="maximum">
<number>250</number>
</property>
</widget>
</item>
<item row="11" column="0">
<widget class="QLabel" name="label_74">
<property name="font">
<font/>
</property>
<property name="text">
<string>Not-Gas:</string>
</property>
</widget>
</item>
<item row="11" column="1">
<widget class="QSpinBox" name="sb_7_6">
<property name="maximum">
<number>250</number>
</property>
</widget>
</item>
<item row="3" column="1">
<widget class="QComboBox" name="cb_7_3">
<property name="editable">
<bool>true</bool>
</property>
<item>
<property name="text">
<string>Poti 1</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 2</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 3</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 4</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 5</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 6</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 7</string>
</property>
</item>
<item>
<property name="text">
<string>Poti 8</string>
</property>
</item>
<item>
<property name="text">
<string>0</string>
</property>
</item>
</widget>
</item>
<item row="8" column="0" colspan="2">
<layout class="QHBoxLayout" name="horizontalLayout_13">
<item>
<widget class="QLabel" name="label_142">
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="text">
<string>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt; color:#550000;&quot;&gt;Eine Zelle oder Total (&lt;/span&gt;&lt;span style=&quot; font-size:9pt; font-weight:600; color:#550000;&quot;&gt;3s=9.9V / 4s=13.2V&lt;/span&gt;&lt;span style=&quot; font-size:9pt; color:#550000;&quot;&gt;)&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
</widget>
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; color:#550000;&quot;&gt;Eine Zelle oder Total &lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="lb_7_4">
<property name="text">
<string>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-weight:600; color:#550000;&quot;&gt;(3s = 0.0V 4s = 0.0V)&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</item>
<item row="11" column="1">
<spacer name="verticalSpacer_20">
<item row="1" column="0">
<spacer name="verticalSpacer_2">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
5455,38 → 5475,6
</layout>
</widget>
</item>
<item row="0" column="1">
<widget class="QTextEdit" name="te_Help_7">
<property name="minimumSize">
<size>
<width>180</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>180</width>
<height>16777215</height>
</size>
</property>
<property name="readOnly">
<bool>true</bool>
</property>
<property name="html">
<string>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;Bei Empfangsverlust: Geht der Funkempfang verloren (außer Reichweite oder Sender aus), tritt die Not-Gas-Regelung in Kraft um dem Piloten Zeit für Gegenmaßnahmen zu geben. Die gesamte Not-Gas-Regelung wird allerdings erst aktiv, wenn ein Gas-Wert von 40 für mindestens 4 Sekunden überschritten war (d.h. der Kopter wahrscheinlich fliegt)! &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:1; text-indent:1px;&quot;&gt;&lt;span style=&quot; font-size:11pt; font-weight:600;&quot;&gt;Min.Gas &lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;Minimaler Gaswert, der an die Motoren geht &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:1; text-indent:1px;&quot;&gt;&lt;span style=&quot; font-size:11pt; font-weight:600;&quot;&gt;Max.Gas &lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;Maximaler Gaswert, der an die Motoren geht. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:1; text-indent:1px;&quot;&gt;&lt;span style=&quot; font-size:11pt; font-weight:600;&quot;&gt;Kompasswirkung &lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;:Ist ein Kompass angeschlossen, kann hiermit der Einfluss auf Gier eingestellt werden &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:1; text-indent:1px;&quot;&gt;&lt;span style=&quot; font-size:11pt; font-weight:600;&quot;&gt;Unterspannung &lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;Schwellwert in 0,1V zum Melden der Akku-Unterspannung &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:1; text-indent:1px;&quot;&gt;&lt;span style=&quot; font-size:11pt; font-weight:600;&quot;&gt;Not-Gas Zeit [0.1s]:&lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt; Hier wird die Zeit in Zehntelsekunden eingetragen, für die das Not-Gas nach Empfangsverlust aktiv wird. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:1; text-indent:1px;&quot;&gt;&lt;span style=&quot; font-size:11pt; font-weight:600;&quot;&gt;Not-Gas:&lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt; Wert für das Not-Gas. &lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="Seite_8">
5509,10 → 5497,7
<item row="0" column="0">
<widget class="QCheckBox" name="s_8_4_cb">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Achs-(ent-)kopplung</string>
5534,10 → 5519,7
<item row="0" column="0">
<widget class="QLabel" name="label_80">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Gier pos. Rückkopplung:</string>
5599,10 → 5581,7
<item row="1" column="0">
<widget class="QLabel" name="label_79">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Nick/Roll Rückkopplung:</string>
5664,10 → 5643,7
<item row="2" column="0">
<widget class="QLabel" name="label_81">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Gier-Korrektur:</string>
6049,10 → 6025,7
<item row="1" column="0">
<widget class="QLabel" name="label_99">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Gas limit:</string>
6114,10 → 6087,7
<item row="2" column="0">
<widget class="QLabel" name="label_98">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Ansprechschwelle:</string>
6134,10 → 6104,7
<item row="2" column="2">
<widget class="QLabel" name="label_102">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Hysterese:</string>
6154,10 → 6121,7
<item row="3" column="0">
<widget class="QLabel" name="label_100">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Turn over Nick:</string>
6181,10 → 6145,7
<item row="3" column="2">
<widget class="QLabel" name="label_101">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Turn over Roll:</string>
6261,10 → 6222,7
<item row="0" column="0">
<widget class="QLabel" name="label_83">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Parameter 1:</string>
6333,10 → 6291,7
<item row="1" column="0">
<widget class="QLabel" name="label_85">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Parameter 2:</string>
6405,10 → 6360,7
<item row="2" column="0">
<widget class="QLabel" name="label_87">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Parameter 3:</string>
6477,10 → 6429,7
<item row="3" column="0">
<widget class="QLabel" name="label_89">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Parameter 4:</string>
6549,10 → 6498,7
<item row="4" column="0">
<widget class="QLabel" name="label_91">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Parameter 5:</string>
6621,10 → 6567,7
<item row="5" column="0">
<widget class="QLabel" name="label_93">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Parameter 6:</string>
6693,10 → 6636,7
<item row="6" column="0">
<widget class="QLabel" name="label_95">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Parameter 7:</string>
6765,10 → 6705,7
<item row="7" column="0">
<widget class="QLabel" name="label_97">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Parameter 8:</string>
6927,10 → 6864,7
<item row="0" column="0">
<widget class="QLabel" name="label_116">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Ausgang J16</string>
6954,7 → 6888,7
<property name="maximumSize">
<size>
<width>15</width>
<height>15</height>
<height>22</height>
</size>
</property>
<property name="toolTip">
6983,7 → 6917,7
<property name="maximumSize">
<size>
<width>15</width>
<height>15</height>
<height>22</height>
</size>
</property>
<property name="toolTip">
7012,7 → 6946,7
<property name="maximumSize">
<size>
<width>15</width>
<height>15</height>
<height>22</height>
</size>
</property>
<property name="toolTip">
7041,7 → 6975,7
<property name="maximumSize">
<size>
<width>15</width>
<height>15</height>
<height>22</height>
</size>
</property>
<property name="toolTip">
7070,7 → 7004,7
<property name="maximumSize">
<size>
<width>15</width>
<height>15</height>
<height>22</height>
</size>
</property>
<property name="toolTip">
7099,7 → 7033,7
<property name="maximumSize">
<size>
<width>15</width>
<height>15</height>
<height>22</height>
</size>
</property>
<property name="toolTip">
7128,7 → 7062,7
<property name="maximumSize">
<size>
<width>15</width>
<height>15</height>
<height>22</height>
</size>
</property>
<property name="toolTip">
7157,7 → 7091,7
<property name="maximumSize">
<size>
<width>15</width>
<height>15</height>
<height>22</height>
</size>
</property>
<property name="toolTip">
7186,10 → 7120,7
<item row="1" column="0">
<widget class="QLabel" name="label_107">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Timing:</string>
7258,10 → 7189,7
<item row="2" column="0">
<widget class="QLabel" name="label_115">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Ausgang J17</string>
7285,7 → 7213,7
<property name="maximumSize">
<size>
<width>15</width>
<height>15</height>
<height>22</height>
</size>
</property>
<property name="toolTip">
7314,7 → 7242,7
<property name="maximumSize">
<size>
<width>15</width>
<height>15</height>
<height>22</height>
</size>
</property>
<property name="toolTip">
7343,7 → 7271,7
<property name="maximumSize">
<size>
<width>15</width>
<height>15</height>
<height>22</height>
</size>
</property>
<property name="toolTip">
7372,7 → 7300,7
<property name="maximumSize">
<size>
<width>15</width>
<height>15</height>
<height>22</height>
</size>
</property>
<property name="toolTip">
7401,7 → 7329,7
<property name="maximumSize">
<size>
<width>15</width>
<height>15</height>
<height>22</height>
</size>
</property>
<property name="toolTip">
7430,7 → 7358,7
<property name="maximumSize">
<size>
<width>15</width>
<height>15</height>
<height>22</height>
</size>
</property>
<property name="toolTip">
7459,7 → 7387,7
<property name="maximumSize">
<size>
<width>15</width>
<height>15</height>
<height>22</height>
</size>
</property>
<property name="toolTip">
7488,7 → 7416,7
<property name="maximumSize">
<size>
<width>15</width>
<height>15</height>
<height>22</height>
</size>
</property>
<property name="toolTip">
7517,10 → 7445,7
<item row="3" column="0">
<widget class="QLabel" name="label_112">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Timing:</string>
7589,10 → 7514,7
<item row="4" column="0" colspan="4">
<widget class="QCheckBox" name="cb_11_7">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Nur bei laufenden Motoren einschalten</string>
7599,7 → 7521,7
</property>
</widget>
</item>
<item row="5" column="0" colspan="3">
<item row="5" column="0" colspan="4">
<widget class="Line" name="line_3">
<property name="orientation">
<enum>Qt::Horizontal</enum>
7609,10 → 7531,7
<item row="6" column="0" colspan="2">
<widget class="QLabel" name="label_144">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Unterspannungswarnung:</string>
7622,10 → 7541,7
<item row="7" column="0">
<widget class="QLabel" name="label_2">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>an J16</string>
7649,7 → 7565,7
<property name="maximumSize">
<size>
<width>15</width>
<height>15</height>
<height>22</height>
</size>
</property>
<property name="toolTip">
7678,7 → 7594,7
<property name="maximumSize">
<size>
<width>15</width>
<height>15</height>
<height>22</height>
</size>
</property>
<property name="toolTip">
7707,7 → 7623,7
<property name="maximumSize">
<size>
<width>15</width>
<height>15</height>
<height>22</height>
</size>
</property>
<property name="toolTip">
7736,7 → 7652,7
<property name="maximumSize">
<size>
<width>15</width>
<height>15</height>
<height>22</height>
</size>
</property>
<property name="toolTip">
7765,7 → 7681,7
<property name="maximumSize">
<size>
<width>15</width>
<height>15</height>
<height>22</height>
</size>
</property>
<property name="toolTip">
7794,7 → 7710,7
<property name="maximumSize">
<size>
<width>15</width>
<height>15</height>
<height>22</height>
</size>
</property>
<property name="toolTip">
7823,7 → 7739,7
<property name="maximumSize">
<size>
<width>15</width>
<height>15</height>
<height>22</height>
</size>
</property>
<property name="toolTip">
7852,7 → 7768,7
<property name="maximumSize">
<size>
<width>15</width>
<height>15</height>
<height>22</height>
</size>
</property>
<property name="toolTip">
7881,10 → 7797,7
<item row="8" column="0">
<widget class="QLabel" name="label_145">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="mouseTracking">
<bool>false</bool>
7911,7 → 7824,7
<property name="maximumSize">
<size>
<width>15</width>
<height>15</height>
<height>22</height>
</size>
</property>
<property name="toolTip">
7940,7 → 7853,7
<property name="maximumSize">
<size>
<width>15</width>
<height>15</height>
<height>22</height>
</size>
</property>
<property name="toolTip">
7969,7 → 7882,7
<property name="maximumSize">
<size>
<width>15</width>
<height>15</height>
<height>22</height>
</size>
</property>
<property name="toolTip">
7998,7 → 7911,7
<property name="maximumSize">
<size>
<width>15</width>
<height>15</height>
<height>22</height>
</size>
</property>
<property name="toolTip">
8027,7 → 7940,7
<property name="maximumSize">
<size>
<width>15</width>
<height>15</height>
<height>22</height>
</size>
</property>
<property name="toolTip">
8056,7 → 7969,7
<property name="maximumSize">
<size>
<width>15</width>
<height>15</height>
<height>22</height>
</size>
</property>
<property name="toolTip">
8085,7 → 7998,7
<property name="maximumSize">
<size>
<width>15</width>
<height>15</height>
<height>22</height>
</size>
</property>
<property name="toolTip">
8114,7 → 8027,7
<property name="maximumSize">
<size>
<width>15</width>
<height>15</height>
<height>22</height>
</size>
</property>
<property name="toolTip">
8156,10 → 8069,7
<item row="9" column="1" colspan="2">
<widget class="QLabel" name="label_63">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>festes Timing 0.1s</string>
8169,10 → 8079,7
<item row="7" column="3">
<widget class="QCheckBox" name="s_11_7_cb">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>aktiv</string>
8182,10 → 8089,7
<item row="8" column="3">
<widget class="QCheckBox" name="s_11_8_cb">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>aktiv</string>
8217,10 → 8121,7
<item row="0" column="0" colspan="2">
<widget class="QCheckBox" name="s_12_1_cb">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>GPS aktiv</string>
8242,10 → 8143,7
<item row="0" column="0" colspan="2">
<widget class="QLabel" name="label_120">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>GPS Modus Steuerung:</string>
8307,10 → 8205,7
<item row="1" column="0" colspan="2">
<widget class="QLabel" name="label_123">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>GPS Verstärkung</string>
8379,10 → 8274,7
<item row="2" column="0" colspan="2">
<widget class="QLabel" name="label_119">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>GPS Stick Schwelle:</string>
8399,10 → 8291,7
<item row="3" column="0" colspan="2">
<widget class="QLabel" name="label_122">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Min. Sat.</string>
8419,10 → 8308,7
<item row="4" column="0">
<widget class="QLabel" name="label_125">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>GPS P:</string>
8484,10 → 8370,7
<item row="4" column="3">
<widget class="QLabel" name="label_77">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Limit:</string>
8549,10 → 8432,7
<item row="5" column="0">
<widget class="QLabel" name="label_127">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>GPS I:</string>
8614,10 → 8494,7
<item row="5" column="3">
<widget class="QLabel" name="label_126">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Limit:</string>
8679,10 → 8556,7
<item row="6" column="0">
<widget class="QLabel" name="label_129">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>GPS D:</string>
8744,10 → 8618,7
<item row="6" column="3">
<widget class="QLabel" name="label_134">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Limit</string>
8809,10 → 8680,7
<item row="7" column="0" colspan="2">
<widget class="QLabel" name="label_131">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>GPS ACC:</string>
8913,9 → 8781,9
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:11pt; font-weight:600; text-decoration: underline;&quot;&gt;Einstellungen für das Navi-Ctrl.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:11pt; font-weight:600;&quot;&gt;GPS Mode Control:&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:11pt; font-weight:600;&quot;&gt;GPS Modus Steuerung:&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;0 = Free, 100 = Position Hold, 200 = Coming Home&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:11pt; font-weight:600;&quot;&gt;GPS Stick Threshold:&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:11pt; font-weight:600;&quot;&gt;GPS Stick Schwelle:&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;0 = Position Hold by Mode Control&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
</widget>
8942,10 → 8810,7
<item row="0" column="0">
<widget class="QCheckBox" name="s_13_1_cb">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>GPS aktiv</string>
8967,10 → 8832,7
<item row="0" column="0">
<widget class="QLabel" name="label_139">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>GPS Windkorrektur:</string>
9039,10 → 8901,7
<item row="1" column="0">
<widget class="QLabel" name="label_141">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Bremswirkung:</string>
9111,10 → 8970,7
<item row="2" column="0">
<widget class="QLabel" name="label_148">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>GPS-Maxradius:</string>
9183,10 → 9039,7
<item row="3" column="0">
<widget class="QLabel" name="label_151">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>GPS Winkelbegrenzung:</string>
9255,10 → 9108,7
<item row="4" column="0">
<widget class="QLabel" name="label_153">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
<font/>
</property>
<property name="text">
<string>Position Hold Login-Zeit:</string>
9335,72 → 9185,20
</item>
</layout>
</widget>
<widget class="QWidget" name="Seite"/>
<widget class="QWidget" name="Seite">
<widget class="QSpinBox" name="sb_0_1">
<property name="geometry">
<rect>
<x>210</x>
<y>120</y>
<width>50</width>
<height>24</height>
</rect>
</property>
</widget>
</widget>
</widget>
</item>
<item row="0" column="2">
<widget class="QFrame" name="frame">
<property name="frameShape">
<enum>QFrame::StyledPanel</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Raised</enum>
</property>
<layout class="QGridLayout" name="gridLayout_27">
<property name="margin">
<number>0</number>
</property>
<item row="0" column="0">
<widget class="QWidget" name="wg_Set" native="true">
<layout class="QGridLayout" name="gridLayout_8">
<property name="topMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item row="0" column="0">
<widget class="QLabel" name="label_146">
<property name="text">
<string>Parametersatz</string>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QSpinBox" name="sb_Set">
<property name="minimum">
<number>1</number>
</property>
<property name="maximum">
<number>5</number>
</property>
</widget>
</item>
<item row="0" column="2">
<widget class="QLineEdit" name="le_SetName">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>100</width>
<height>0</height>
</size>
</property>
</widget>
</item>
</layout>
</widget>
</item>
</layout>
</widget>
</item>
<item row="0" column="0" colspan="2">
<widget class="wgt_Connection" name="wg_Connection" native="true"/>
</item>
</layout>
</widget>
<widget class="QMenuBar" name="menuBar">
9408,7 → 9206,7
<rect>
<x>0</x>
<y>0</y>
<width>778</width>
<width>753</width>
<height>19</height>
</rect>
</property>
9608,7 → 9406,6
</customwidgets>
<resources>
<include location="../QMK-Settings.qrc"/>
<include location="../../QMK-Maps/QMK-Maps.qrc"/>
</resources>
<connections>
<connection>