New Sensor-> Actor -> Item system (half implemented, relay support

only), new ui, Relay dehardcoeding.
This commit is contained in:
IMback 2018-11-02 22:08:49 +01:00
parent 74f117db69
commit b04fbfb5bc
66 changed files with 3905 additions and 123 deletions

22
alarmwidget.h Normal file
View file

@ -0,0 +1,22 @@
#ifndef ALARMWIDGET_H
#define ALARMWIDGET_H
#include <QWidget>
namespace Ui {
class AlarmWidget;
}
class AlarmWidget : public QWidget
{
Q_OBJECT
public:
explicit AlarmWidget(QWidget *parent = nullptr);
~AlarmWidget();
private:
Ui::AlarmWidget *ui;
};
#endif // ALARMWIDGET_H