Files
newspark110/device/ui/rstozerosetwidget.h
Chenwenxuan edac2715f0 init
2024-03-06 14:54:30 +08:00

26 lines
529 B
C++

#ifndef RSTOZEROSETWIDGET_H
#define RSTOZEROSETWIDGET_H
#include <QFrame>
#include "ui_rstozerosetwidget.h"
class RSToZeroSetWidget:public QFrame
{
Q_OBJECT
public:
explicit RSToZeroSetWidget(QWidget* parent=nullptr);
private slots:
void on_dsbZAAxisToZero1Vel_valueChanged(double value);
void on_dsbZAAxisToZero2Vel_valueChanged(double value);
void on_dsbZAAxisToZero3Vel_valueChanged(double value);
private:
void loadSet();
private:
Ui::RSToZeroSetWidget* ui;
};
#endif // RSTOZEROSETWIDGET_H