QHumidityReading Class
The QHumidityReading class holds readings from the humidity sensor. More...
Header: | #include <QHumidityReading> |
CMake: | find_package(Qt6 REQUIRED COMPONENTS Sensors) target_link_libraries(mytarget PRIVATE Qt6::Sensors) |
qmake: | QT += sensors |
Inherits: | QSensorReading |
Properties
- absoluteHumidity : const qreal
- relativeHumidity : const qreal
Public Functions
qreal | absoluteHumidity() const |
qreal | relativeHumidity() const |
void | setAbsoluteHumidity(qreal value) |
void | setRelativeHumidity(qreal humidity) |
Detailed Description
QHumidityReading Units
The humidity sensor returns the relative humidity as a percentage, and absolute humidity in grams per cubic meter (g/m3). Note that some sensors may not support absolute humidity, 0 will be returned in this case.
Property Documentation
[read-only]
absoluteHumidity : const qreal
Absolute humidity Measured in grams per cubic meter. Note that some sensors may not support absolute humidity.
Access functions:
qreal | absoluteHumidity() const |
See also QHumidityReading Units.
[read-only]
relativeHumidity : const qreal
Relative humidity Returned as a percentage.
Access functions:
qreal | relativeHumidity() const |
See also QHumidityReading Units.
Member Function Documentation
void QHumidityReading::setAbsoluteHumidity(qreal value)
Sets absoluteHumidity to value.
See also absoluteHumidity().
void QHumidityReading::setRelativeHumidity(qreal humidity)
Sets relativeHumidity to humidity.
See also relativeHumidity().
© 2024 The Qt Company Ltd. 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. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.