-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #143 from kipr/v30.3.0
V30.3.0
- Loading branch information
Showing
6 changed files
with
1,117 additions
and
768 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,42 @@ | ||
#ifndef _CREATE3EXAMPLEWIDGET_H_ | ||
#define _CREATE3EXAMPLEWIDGET_H_ | ||
|
||
#include "StandardWidget.h" | ||
|
||
#include <QRegularExpression> | ||
#include <QStringListModel> | ||
namespace Ui | ||
{ | ||
class Create3ExampleWidget; | ||
} | ||
|
||
class Create3SensorModel; | ||
|
||
class Create3ExampleWidget : public StandardWidget | ||
{ | ||
Q_OBJECT | ||
public: | ||
Create3ExampleWidget(Device *device, QWidget *parent = 0); | ||
~Create3ExampleWidget(); | ||
|
||
private slots: | ||
|
||
int create3Connect(); | ||
int isConnected(); | ||
void indexChanged(int index); | ||
void run(); | ||
|
||
private: | ||
Ui::Create3ExampleWidget *ui; | ||
|
||
Create3SensorModel *_model; | ||
double m_setpointVal; | ||
double m_feedbackVal; | ||
int m_position_1; | ||
double m_vel_1; | ||
void update(); | ||
QStringListModel *model; | ||
void updatePids(); | ||
}; | ||
|
||
#endif | ||
// #ifndef _CREATE3EXAMPLEWIDGET_H_ | ||
// #define _CREATE3EXAMPLEWIDGET_H_ | ||
|
||
// #include "StandardWidget.h" | ||
|
||
// #include <QRegularExpression> | ||
// #include <QStringListModel> | ||
// namespace Ui | ||
// { | ||
// class Create3ExampleWidget; | ||
// } | ||
|
||
// class Create3SensorModel; | ||
|
||
// class Create3ExampleWidget : public StandardWidget | ||
// { | ||
// Q_OBJECT | ||
// public: | ||
// Create3ExampleWidget(Device *device, QWidget *parent = 0); | ||
// ~Create3ExampleWidget(); | ||
|
||
// private slots: | ||
|
||
// int create3Connect(); | ||
// int isConnected(); | ||
// void indexChanged(int index); | ||
// void run(); | ||
|
||
// private: | ||
// Ui::Create3ExampleWidget *ui; | ||
|
||
// Create3SensorModel *_model; | ||
// double m_setpointVal; | ||
// double m_feedbackVal; | ||
// int m_position_1; | ||
// double m_vel_1; | ||
// void update(); | ||
// QStringListModel *model; | ||
// void updatePids(); | ||
// }; | ||
|
||
// #endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.