Subversion Repositories Projects

Rev

Rev 440 | Blame | Compare with Previous | Last modification | View Log | RSS feed

/***************************************************************************
 *   Copyright (C) 2008 by Manuel Schrape                                  *
 *   manuel.schrape@gmx.de                                                 *
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License.        *
 *                                                                         *
 *   This program is distributed in the hope that it will be useful,       *
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 *   GNU General Public License for more details.                          *
 *                                                                         *
 *   You should have received a copy of the GNU General Public License     *
 *   along with this program; if not, write to the                         *
 *   Free Software Foundation, Inc.,                                       *
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
 ***************************************************************************/

#include "dlg_Motortest.h"

dlg_Motortest::dlg_Motortest(QWidget *parent) : QDialog(parent)
{
    setupUi(this);
    connect(sl_Speed, SIGNAL(valueChanged(int)), this, SLOT(slot_Motortest(int)));
}

void dlg_Motortest::slot_Motortest(int Wert)
{
    //TODO: use KopterData?
    sMotorData Motor;

    for (int z = 0; z < 12; z++)
    {
        Motor.desired_speed[z] = 0;
    }

    if (cb_1->isChecked())
        Motor.desired_speed[0] = Wert;
    if (cb_2->isChecked())
        Motor.desired_speed[1] = Wert;
    if (cb_3->isChecked())
        Motor.desired_speed[2] = Wert;
    if (cb_4->isChecked())
        Motor.desired_speed[3] = Wert;
    if (cb_5->isChecked())
        Motor.desired_speed[4] = Wert;
    if (cb_6->isChecked())
        Motor.desired_speed[5] = Wert;
    if (cb_7->isChecked())
        Motor.desired_speed[6] = Wert;
    if (cb_8->isChecked())
        Motor.desired_speed[7] = Wert;
    if (cb_9->isChecked())
        Motor.desired_speed[8] = Wert;
    if (cb_10->isChecked())
        Motor.desired_speed[9] = Wert;
    if (cb_11->isChecked())
        Motor.desired_speed[10] = Wert;
    if (cb_12->isChecked())
        Motor.desired_speed[11] = Wert;

    emit updateMotor(Motor);
}

dlg_Motortest::~dlg_Motortest()
{
}