summaryrefslogtreecommitdiffstats
path: root/src/plugins/sensors/sensorfw/sensorfwals.h
blob: 86af858bad03f4efc1f61e3782b2ca086bfa664d (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
// 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 SENSORFWALS_H
#define SENSORFWALS_H

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

#include <alssensor_i.h>



class Sensorfwals : public SensorfwSensorBase
{
    Q_OBJECT

public:
    static char const * const id;
    Sensorfwals(QSensor *sensor);
protected:
    bool doConnect() override;
    QString sensorName() const override;
    void start() override;
    virtual void init();

private:
    QAmbientLightReading m_reading;
    bool m_initDone;
private slots:
    void slotDataAvailable(const Unsigned& data);
    static QAmbientLightReading::LightLevel getLightLevel(int lux);

};

#endif