QPressureReading
Since: Units}
#include <QtSensors/QPressureReading>
More information will be added here shortly. For now, you'll find more extensive information about this class in the Qt reference for QPressureReading
QtSensors
The QPressureReading class holds readings from the pressure sensor.
Overview
Inheritance
QSensorReading | ||
QPressureReading |
Properties Index
qreal | pressure [read-only] |
qreal | temperature [read-only] |
QtMobility::qtimestamp | timestamp [read-only]![]() |
Public Functions Index
qreal | pressure () const |
void | setPressure (qreal pressure) |
void | setTemperature (qreal temperature) |
qreal | temperature () const |
void | setTimestamp (qtimestamp timestamp)![]() |
qtimestamp | timestamp () const ![]() |
QVariant | value (int index) const ![]() |
int | valueCount () const ![]() |
Protected Functions Index
Only has inherited protected functions
virtual void | copyValuesFrom (QSensorReading *other)![]() |
QScopedPointer< QSensorReadingPrivate > * | d_ptr ()![]() |
QSensorReading (QObject *parent, QSensorReadingPrivate *d)![]() |
Properties
qreal
The pressure sensor's temperature.
The temperature is returned in degree Celsius. This property provides the pressure sensor die temperature. Note that this temperature may be (and usually is) different than the temperature reported from QAmbientTemperatureSensor.
Public Functions
qreal
void
Sets the pressure to pressure.
void
Sets the pressure sensor's temperature to temperature.
qreal
void 
Sets the timestamp of the reading.
1.0
QVariant 
Returns the value of the property at index.
Note that this function is slower than calling the data function directly.
Here is an example of getting a property via the different mechanisms available.
Accessing directly provides the best performance but requires compile-time knowledge of the data you are accessing.
QAccelerometerReading *reading = ...; qreal x = reading->x();
You can also access a property by name. To do this you must call QObject::property().
qreal x = reading->property("x").value<qreal>();
Finally, you can access values via numeric index.
qreal x = reading->value(0).value<qreal>();
Note that value() can only access properties declared with Q_PROPERTY() in sub-classes of QSensorReading.
valueCount(), QObject::property()
1.0
int 
Returns the number of extra properties that the reading has.
Note that this does not count properties declared in QSensorReading.
1.0
Protected Functions
(Only has inherited protected functions)
© 2013 Digia Plc and/or its subsidiaries. Documentation contributions included herein are the copyrights of their respective owners.
The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation.
Documentation sources may be obtained from www.qt-project.org.
Digia, Qt and their respective logos are trademarks of Digia Plc in Finland and/or other countries worldwide. All other trademarks are property of their respective owners. Privacy Policy