Library for MQ135 Sensor
Find a file
2021-04-22 19:32:27 +02:00
.gitignore Initial commit 2021-04-05 16:09:16 +02:00
LICENSE Initial commit 2021-04-05 16:09:16 +02:00
MQ135.cpp add correction calculations 2021-04-22 19:32:27 +02:00
MQ135.h add correction calculations 2021-04-22 19:32:27 +02:00
README.md docs 2021-04-12 21:22:12 +02:00

MQ135 Library

Arduino Library for MQ135 Sensor

Learn more

How does this work?

First we need to calculate the actual voltage from our sensor. The value we read by analogRead is just a value mapped to 2^10 bits.

Since we are running our sensor at 5V, a measured value of 1023 equals 5V and the measured value 0 equals 0V. We convert this with the following formula:

// x is our measured value
voltage = x * 5 / 1023
// or
voltage = 5x / 1023

Next we can calculate the resistance of the sensor. For more details should be looked up in this article: https://jayconsystems.com/blog/understanding-a-gas-sensor

V = I x R 
VRL = [VC / (RS + RL)] x RL 
VRL = (VC x RL) / (RS + RL) 

So now we solve for RS: 

VRL x (RS + RL) = VC x RL
(VRL x RS) + (VRL x RL) = VC x RL 
(VRL x RS) = (VC x RL) - (VRL x RL)
RS = [(VC x RL) - (VRL x RL)] / VRL
RS = [(VC x RL) / VRL] - RL

To calculate the gas content in the air from the resistance we use the values from https://github.com/miguel5612/MQSensorsLib