summaryrefslogtreecommitdiffstats
path: root/src/plugins/sensors/sensorfw/sensorfwlightsensor.h
blob: c3e0fb870c3cf33def50d917748c74c0d1fac748 (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
// 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 SENSORFWLIGHTSENSOR_H
#define SENSORFWLIGHTSENSOR_H

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

#include <alssensor_i.h>


class SensorfwLightSensor : public SensorfwSensorBase
{
    Q_OBJECT

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

#endif