Welcome to Kerala Project Center.
Image: LPG cylinders.JPG by Evil Monkey via Wikimedia Commons, CC BY 2.5
Running out of cooking gas or a stored gas supply mid-use is a common, avoidable inconvenience when there's no way to check the remaining level without physically weighing or shaking the cylinder.
This project monitors gas level in a tank using pressure sensing or an MQ-series gas sensor calibrated to the tank's characteristics, displaying the current level on an LCD and triggering an alert well before the supply actually runs out.
// Simplified gas level monitoring - Arduino
int gasSensorPin = A0;
int buzzerPin = 8;
int lowLevelThreshold = 150; // calibrate to sensor + tank characteristics
void setup() {
pinMode(buzzerPin, OUTPUT);
Serial.begin(9600);
}
void loop() {
int level = analogRead(gasSensorPin);
Serial.println(level);
if (level < lowLevelThreshold) {
digitalWrite(buzzerPin, HIGH);
Serial.println("LOW GAS LEVEL - refill needed");
} else {
digitalWrite(buzzerPin, LOW);
}
delay(2000);
}
Monday - Saturday: 9:00 AM - 5:00 PM
Sunday: Not Working
2nd Floor, Comptron Arcade, Kallattumukku,
Thiruvananthapuram, Kerala 695012
+91 9633118080