summaryrefslogtreecommitdiffstats
path: root/src/plugins/sensors/sensorfw/sensorfwlidsensor.h
blob: 50d222e9653d420910e3b33232eb6d420e30fdcf (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
// Copyright (C) 2016 Canonical, Ltd
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only


#ifndef SENSORFWLIDSENSOR_H
#define SENSORFWLIDSENSOR_H

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

#include <lidsensor_i.h>
#include <liddata.h>


class SensorfwLidSensor : public SensorfwSensorBase
{
    Q_OBJECT

public:
    static char const * const id;
    SensorfwLidSensor(QSensor *sensor);
protected:
    bool doConnect() override;
    QString sensorName() const override;
    void start() override;
    virtual void init();
private:
    QLidReading m_reading;
    bool m_initDone;
private slots:
    void slotDataAvailable(const LidData& data);
};

#endif