Initial import

This commit is contained in:
Michael Mandl 2017-10-15 12:30:15 +02:00
commit 94611f2381
10 changed files with 258 additions and 0 deletions

27
source/mainwindow.h Normal file
View 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