Vaisakh1997Bonifaceshafeeque
Published © GPL3+

Real time LPG monitoring system

LPG leakage is monitored using arduino and MQ2 gas sensor module. the concentration of LPG particles are plotted using serial plotter.

BeginnerShowcase (no instructions)7,305
Real time LPG monitoring system

Things used in this project

Story

Read more

Schematics

connections

This is the schematic diagram of the project. use jumper wires to connect them

Code

Arduino code

Arduino
Upload this code into your arduino
int mqxx_analogPin = A0;
void setup()
{
  Serial.begin(9600);
}
void loop()
{
  int mqxx_value = analogRead(mqxx_analogPin);
  Serial.println(mqxx_value);
  delay(100);
}

Credits

Vaisakh1997

Vaisakh1997

2 projects • 14 followers
Boniface

Boniface

0 projects • 4 followers
shafeeque

shafeeque

0 projects • 5 followers
Thanks to Vaisakh P.

Comments