Page MenuHomec4science

mainwindow.h
No OneTemporary

File Metadata

Created
Sun, Apr 28, 05:57

mainwindow.h

#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QTimer>
#include "../HriBoardLib/hriboard.h"
namespace Ui {
class MainWindow;
}
/**
* @addtogroup HriExampleProgram
* @{
*/
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
public slots:
void onVarsListReceived(const QList<SyncVarBase *> &syncVars);
void updateDisplay();
void setLedIntensity();
private:
Ui::MainWindow *ui; ///< Graphical user interface handle.
HriBoard hriBoard; ///< HRI board interface.
QLinkedList<QList<double>> streamedVarsValuesBuffer; ///< Queue to receive the all the values of the streamed variables.
SyncVar<float> *encoderPosition, *hallVoltage, *ledIntensity; ///< Handle for the SyncVars used in this example.
QTimer updateTimer; ///< Timer to update periodically the data display.
};
/**
* @}
*/
#endif

Event Timeline