source: flair-src/tags/latest/lib/FlairFilter/src/unexported/PidThrust_impl.h@ 451

Last change on this file since 451 was 223, checked in by Sanahuja Guillaume, 6 years ago

add delta time to io_data

File size: 1.2 KB
Line 
1// %flair:license{
2// This file is part of the Flair framework distributed under the
3// CECILL-C License, Version 1.0.
4// %flair:license}
5/*!
6 * \file PidThrust_impl.h
7 * \brief Classe permettant le calcul d'un Pid
8 * \author Guillaume Sanahuja, Copyright Heudiasyc UMR UTC/CNRS 7253
9 * \date 2014/11/07
10 * \version 4.0
11 */
12
13#ifndef PIDTHRUST_IMPL_H
14#define PIDTHRUST_IMPL_H
15
16#include <Object.h>
17
18namespace flair {
19namespace core {
20class Matrix;
21class io_data;
22}
23namespace gui {
24class LayoutPosition;
25class DoubleSpinBox;
26}
27namespace filter {
28class PidThrust;
29}
30}
31
32/*! \class PidThrust_impl
33* \brief Class defining a PID
34*/
35
36class PidThrust_impl {
37public:
38 PidThrust_impl(flair::filter::PidThrust *self,
39 const flair::gui::LayoutPosition *position, std::string name);
40 ~PidThrust_impl();
41 void UseDefaultPlot(const flair::gui::LayoutPosition *position);
42 void UpdateFrom(const flair::core::io_data *data);
43 float i, offset_g;
44 flair::gui::DoubleSpinBox *offset, *pas_offset;
45
46private:
47 flair::filter::PidThrust *self;
48 bool first_update;
49
50 // matrix
51 flair::core::Matrix *state;
52
53 flair::gui::DoubleSpinBox *T, *kp, *ki, *kd, *sat, *sati;
54};
55
56#endif // PIDTHRUST_IMPL_H
Note: See TracBrowser for help on using the repository browser.