User Tools

Site Tools


amc2021:groupl:extras:r0:start

Finding Rzero

The below code is used to get the Rzero value of a particular MQ135 sensor, this is the resistance of the sensor in the presence of clean air.

Finding_Rzero.ino
#include "MQ135.h"
const int ANALOGPIN=A0;
MQ135 gasSensor = MQ135(ANALOGPIN);
void setup(){
  Serial.begin(9600);      // sets the serial port to 9600
}
void loop(){
  float rzero = gasSensor.getRZero();
  Serial.println(rzero);
  delay(1000);
}

Back to report

amc2021/groupl/extras/r0/start.txt · Last modified: 2021/09/06 17:38 by kshama001