The QPressureReading class holds readings from the pressure sensor. 更多...
| 頭: | #include <QPressureReading> |
| CMake: |
find_package(Qt6 REQUIRED COMPONENTS Sensors)
target_link_libraries(mytarget PRIVATE Qt6::Sensors) |
| qmake: | QT += sensors |
| 繼承: | QSensorReading |
| qreal | pressure () const |
| void | setPressure (qreal pressure ) |
| void | setTemperature (qreal temperature ) |
| qreal | temperature () const |
The pressure sensor returns atmospheric pressure values in Pascals.
[read-only]
pressure
: const
qreal
This property holds the measured atmospheric pressure.
Returned as Pascals.
訪問函數:
| qreal | pressure () const |
另請參閱 QPressureReading Units .
[read-only]
temperature
: const
qreal
This property holds the pressure sensor's temperature.
The temperature is returned in degree Celsius. This property, if supported, provides the pressure sensor die temperature. Note that this temperature may be (and usually is) different than the temperature reported from QAmbientTemperatureSensor 。使用 QSensor::isFeatureSupported () 采用 QSensor::PressureSensorTemperature flag to determine its availability.
訪問函數:
| qreal | temperature () const |
Sets the pressure to pressure .
另請參閱 pressure ().
Sets the pressure sensor's temperature to temperature .
另請參閱 temperature ().