All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.mapsmessaging.devices.i2c.devices.sensors.gravity.module.PH3Module Maven / Gradle / Ivy

package io.mapsmessaging.devices.i2c.devices.sensors.gravity.module;

public class PH3Module extends SensorModule {

  public PH3Module() {
    super();
  }

  @Override
  protected float calculateSensorConcentration(float temperature, float rawConcentration) {
    if (temperature > 20 && temperature < 40) {
      return rawConcentration / (0.005f * temperature + 0.9f);
    }

    return rawConcentration;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy