setHumidityOversample method

void setHumidityOversample(
  1. OversamplingMultiplier value
)

Sets the humidity oversampling to value.

A higher oversampling value means more stable sensor readings, with less noise and jitter. However each step of oversampling adds about 2ms to the latency, causing a slower response time to fast transients.

Implementation

void setHumidityOversample(final OversamplingMultiplier value) {
  _setRegByte(configOsHaddress, oversamplingHumidityMask,
      oversamplingHumidityPosition, value.index);

  _sensorSettings.oversamplingHumidity = value;
}