setPressureOversample method

void setPressureOversample(
  1. OversamplingMultiplier value
)

Sets the pressure 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 setPressureOversample(final OversamplingMultiplier value) {
  _setRegByte(configT_PmodeAddress, oversamplingPressureMask,
      oversamplingPressurePosition, value.index);

  _sensorSettings.oversamplingPressure = value;
}