PySide6.QtSensors.QPressureReading¶
- class QPressureReading¶
- The - QPressureReadingclass holds readings from the pressure sensor. More…- Synopsis¶- Properties¶- pressureᅟ- Measured atmospheric pressure
- temperatureᅟ- Pressure sensor’s temperature
 - Methods¶- def - __init__()
- def - pressure()
- def - setPressure()
- def - setTemperature()
- def - temperature()
 - Note - This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE - Detailed Description¶- QPressureReading Units¶- The pressure sensor returns atmospheric pressure values in Pascals. - Note - Properties can be used directly when - from __feature__ import true_propertyis used or via accessor functions otherwise.- property pressureᅟ: float¶
 - This property holds The measured atmospheric pressure.. - Returned as Pascals. - See also - QPressureReading Units- Access functions:
 - property temperatureᅟ: float¶
 - 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. Use- isFeatureSupported()with the- PressureSensorTemperatureflag to determine its availability.- Access functions:
 - pressure()¶
- Return type:
- float 
 - See also 
 - Getter of property - pressureᅟ.- setPressure(pressure)¶
- Parameters:
- pressure – float 
 
 - Sets the pressure to - pressure.- See also - setTemperature(temperature)¶
- Parameters:
- temperature – float 
 
 - Sets the pressure sensor’s temperature to - temperature.- See also - temperature()¶
- Return type:
- float 
 - See also 
 - Getter of property - temperatureᅟ.