Enroute Flight Navigation
A navigation app for VFR pilots
Sensors.h
1/***************************************************************************
2 * Copyright (C) 2023 by Stefan Kebekus *
3 * stefan.kebekus@gmail.com *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 3 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
20
21#pragma once
22
23#include <QQmlEngine>
24
25#include "GlobalObject.h"
26#include "navigation/Atmosphere.h"
27#include "units/Pressure.h"
28#include "units/Temperature.h"
29
30#if defined(Q_OS_ANDROID) or defined(Q_OS_IOS)
31#include <QAmbientTemperatureSensor>
32#include <QPressureSensor>
33#endif
34
35
41
42class Sensors : public GlobalObject
43{
44 Q_OBJECT
45 QML_ELEMENT
46 QML_SINGLETON
47
48public:
49 //
50 // Constructors and destructors
51 //
52
57 explicit Sensors(QObject* parent = nullptr);
58
59 // deferred initialization
60 void deferredInitialization() override;
61
62 // No default constructor, important for QML singleton
63 explicit Sensors() = delete;
64
66 ~Sensors() override = default;
67
68 // factory function for QML singleton
69 static Sensors* create(QQmlEngine* /*unused*/, QJSEngine* /*unused*/)
70 {
71 return GlobalObject::sensors();
72 }
73
74
75 //
76 // PROPERTIES
77 //
78
84
85
90
97
99 Q_PROPERTY(QString statusString READ statusString NOTIFY statusStringChanged)
100
101
102 //
103 // Getter Methods
104 //
105
110 [[nodiscard]] Units::Pressure ambientPressure() const { return m_ambientPressure; }
111
116 [[nodiscard]] Units::Temperature ambientTemperature() const { return m_ambientTemperature; }
117
122 [[nodiscard]] Units::Distance pressureAltitude() const { return Navigation::Atmosphere::height(m_ambientPressure); }
123
128 [[nodiscard]] QString statusString() const { return m_statusString; }
129
130signals:
133
136
139
142
143private slots:
144 // Update sensor readings. For performance reasons, we poll sensors.
145 void updateSensorReadings();
146
147 // Update the status string
148 void updateStatusString();
149
150private:
151 Q_DISABLE_COPY_MOVE(Sensors)
152
153#if defined(Q_OS_ANDROID) or defined(Q_OS_IOS)
154 // Ambient temperature sensor
155 QAmbientTemperatureSensor m_temperatureSensor;
156
157 // Ambient pressure sensor
158 QPressureSensor m_pressureSensor;
159#endif
160
161 Units::Pressure m_ambientPressure;
162 Units::Temperature m_ambientTemperature;
163 QString m_statusString;
164};
static Q_INVOKABLE Sensors * sensors()
Pointer to appplication-wide static Navigation::Clock instance.
GlobalObject(QObject *parent=nullptr)
Standard constructor.
static Q_INVOKABLE Units::Distance height(Units::Density d)
Computation of height as a function of density.
void deferredInitialization() override
Non-constructor initialization.
void ambientTemperatureChanged()
Notifier signal.
QString statusString() const
Getter function for the property with the same name.
Definition Sensors.h:128
void ambientPressureChanged()
Notifier signal.
~Sensors() override=default
Standard destructor.
Units::Temperature ambientTemperature
Ambient temperature.
Definition Sensors.h:89
Units::Pressure ambientPressure
Ambient pressure.
Definition Sensors.h:83
void statusStringChanged()
Notifier signal.
Units::Temperature ambientTemperature() const
Getter function for the property with the same name.
Definition Sensors.h:116
QString statusString
Status string.
Definition Sensors.h:99
Units::Distance pressureAltitude() const
Getter function for the property with the same name.
Definition Sensors.h:122
void ambientDensityChanged()
Notifier signal.
Sensors(QObject *parent=nullptr)
Standard constructor.
Units::Distance pressureAltitude
Pressure altitude.
Definition Sensors.h:96
Convenience class for distance computations.
Definition Distance.h:35
Convenience class for pressure computations.
Definition Pressure.h:35
Convenience class for temperature computations.
Definition Temperature.h:35
Conversion between units used in aviation.
Definition Angle.h:34