summaryrefslogtreecommitdiffstats
path: root/src/plugins/sensors/sensorfw/sensorfwrotationsensor.h
blob: de0fe24d345d3ee974502b71b3ba00e425fb6cf7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only


#ifndef SENSORFWROTATION_H
#define SENSORFWROTATION_H

#include "sensorfwsensorbase.h"
#include <QtSensors/qrotationsensor.h>

#include <rotationsensor_i.h>
#include <datatypes/xyz.h>



class SensorfwRotationSensor : public SensorfwSensorBase
{
    Q_OBJECT

public:
    static char const * const id;
    SensorfwRotationSensor(QSensor *sensor);
protected:
    bool doConnect() override;
    QString sensorName() const override;
    void start() override;
    virtual void init();
private:
    QRotationReading m_reading;
    bool m_initDone;

private slots:
    void slotDataAvailable(const XYZ& data);
    void slotFrameAvailable(const QList<XYZ> &);
};

#endif