25#include "GlobalObject.h"
26#include "navigation/Atmosphere.h"
27#include "units/Pressure.h"
28#include "units/Temperature.h"
30#if defined(Q_OS_ANDROID) or defined(Q_OS_IOS)
31#include <QAmbientTemperatureSensor>
32#include <QPressureSensor>
57 explicit Sensors(QObject* parent =
nullptr);
69 static Sensors* create(QQmlEngine* , QJSEngine* )
145 void updateSensorReadings();
148 void updateStatusString();
153#if defined(Q_OS_ANDROID) or defined(Q_OS_IOS)
155 QAmbientTemperatureSensor m_temperatureSensor;
158 QPressureSensor m_pressureSensor;
163 QString m_statusString;
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.
void ambientPressureChanged()
Notifier signal.
~Sensors() override=default
Standard destructor.
Units::Temperature ambientTemperature
Ambient temperature.
Units::Pressure ambientPressure
Ambient pressure.
void statusStringChanged()
Notifier signal.
Units::Temperature ambientTemperature() const
Getter function for the property with the same name.
QString statusString
Status string.
Units::Distance pressureAltitude() const
Getter function for the property with the same name.
void ambientDensityChanged()
Notifier signal.
Sensors(QObject *parent=nullptr)
Standard constructor.
Units::Distance pressureAltitude
Pressure altitude.
Convenience class for distance computations.
Convenience class for pressure computations.
Convenience class for temperature computations.
Conversion between units used in aviation.