diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-10-11 18:34:48 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-10-11 18:34:48 +0200 |
commit | acb25f74631597b2b24dca2c16da9dbb9ed2ecb1 (patch) | |
tree | 3eb6151054551a1586eeb1dbd67cda23dc2e47b2 /client/esp/timetest.h | |
parent | 1d385074e33f831e88499603c46e25170b770ada (diff) | |
parent | 8c1381da90da1d8c972ee6065dfe5d0ee5e5f1e1 (diff) |
Merge branch 'QT_ESP' of https://github.com/NielsCoding/avans-whether-station into esp
Diffstat (limited to 'client/esp/timetest.h')
-rw-r--r-- | client/esp/timetest.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/client/esp/timetest.h b/client/esp/timetest.h new file mode 100644 index 0000000..aa1d8a5 --- /dev/null +++ b/client/esp/timetest.h @@ -0,0 +1,27 @@ +#ifndef TIMETEST_H +#define TIMETEST_H +#include <QTimer> +#include <QDebug> +#include <QObject> +#include <QDateTime> + +class TimeTest : public QObject +{ + Q_OBJECT +public: + explicit TimeTest(QObject *parent = 0); + +signals: +public slots: + qint16 myfunction(); + +private: + QTimer *timer; + + + + +}; + + +#endif // TIMETEST_H |