mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-05 18:20:33 -08:00
17 lines
268 B
C++
17 lines
268 B
C++
#pragma once
|
|
|
|
#include <QObject>
|
|
#include <QVariant>
|
|
|
|
extern "C" { QObject* ini(); }
|
|
|
|
class QT : public QObject {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
// sensors
|
|
Q_INVOKABLE QVariant iniSensors();
|
|
Q_INVOKABLE QVariant heartRate();
|
|
Q_INVOKABLE QVariant heartRateAccuracy();
|
|
};
|
|
|