We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07617b7 commit ed8180cCopy full SHA for ed8180c
adafruit_scd4x.py
@@ -149,12 +149,12 @@ def relative_humidity(self) -> float:
149
self._read_data()
150
return self._relative_humidity
151
152
- def measure_single_shot(self):
+ def measure_single_shot(self) -> None:
153
"""On-demand measurement of CO2 concentration, relative humidity, and
154
temperature for SCD41 only"""
155
self._send_command(_SCD4X_MEASURESINGLESHOT, cmd_delay=5)
156
157
- def measure_single_shot_rht_only(self):
+ def measure_single_shot_rht_only(self) -> None:
158
"""On-demand measurement of relative humidity and temperature for
159
SCD41 only"""
160
self._send_command(_SCD4X_MEASURESINGLESHOTRHTONLY, cmd_delay=0.05)
0 commit comments