Initial import
This commit is contained in:
commit
94611f2381
10 changed files with 258 additions and 0 deletions
27
source/mainwindow.h
Normal file
27
source/mainwindow.h
Normal file
|
@ -0,0 +1,27 @@
|
|||
#ifndef MAINWINDOW_H
|
||||
#define MAINWINDOW_H
|
||||
|
||||
#include <QMainWindow>
|
||||
|
||||
namespace Ui {
|
||||
class MainWindow;
|
||||
}
|
||||
|
||||
class MainWindow : public QMainWindow
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit MainWindow(QWidget *parent = 0);
|
||||
~MainWindow();
|
||||
|
||||
private:
|
||||
Ui::MainWindow *ui;
|
||||
|
||||
private slots:
|
||||
void ledOn();
|
||||
void ledOff();
|
||||
void distanceUpdated(double distMeters);
|
||||
};
|
||||
|
||||
#endif // MAINWINDOW_H
|
Loading…
Add table
Add a link
Reference in a new issue