CMR INSTITUTE OF
TECHNOLOGY
BANGALORE, KARNATAKA-560019
DEPARTMENT OF COMPUTER
SCIENCE
ARDUINO MINI PROJECT
Science Journal Research Report Presentation Board
RESULT AND
ABSTRACT INTRODUCTION METHOD DATA(CODE) CONCLUSION
DISCUSSION
Team Member AADITYA GUPTA I-01 / AARUHI I-02 / AARYAN UPADHYAY I-03
This project outlines the design, development, and deployment of a gas detection system leveraging Arduino Mini technology.
The central aim is to devise a cost-effective and highly efficient gas detection solution adaptable to diverse environments. The
system integrates gas sensors with an Arduino Mini microcontroller to identify specific gases in the surroundings. The project
commences with an overview of gas detection principles and sensor technologies, emphasizing the meticulous selection of
sensors based on sensitivity, accuracy, and compatibility with the Arduino platform. The design section elaborates on the
hardware components, encompassing gas sensors, Arduino Mini, and accompanying circuitry. On the software front, the focus is
on programming the Arduino Mini to capture sensor data, analyze it, and activate alerts or notifications when detecting gas
concentrations surpassing predefined thresholds. Additionally, the project delves into techniques for visualizing and logging gas
□ ABSTRACT
concentration data, facilitating subsequent analysis and monitoring applications.
The implementation phase outlines the integration of hardware and software components, calibration procedures, and testing
scenarios to validate the system's functionality and reliability. Real-time experiments are conducted to demonstrate the system's
ability to accurately detect and respond to gas concentrations within a controlled environment. Furthermore, the project discusses
potential enhancements and future directions for improving the system's capabilities, such as wireless communication for remote
monitoring, integrating multiple sensor types, and expanding the range of detectable gases. In conclusion, the developed gas
detection system utilizing Arduino Mini presents a viable solution for real-time gas monitoring applications, offering versatility,
affordability, and the potential for further advancements in gas sensing technology
This project concentrates on integrating gas detection sensors with the Arduino platform, specifically the Arduino
microcontroller, to develop a resilient and adaptable gas detection system. The Arduino platform's flexibility and user-friendly
□ INTRODUCTION
interface make it well-suited for seamlessly incorporating and interfacing with a variety of gas sensors. This capability enables
real-time detection and analysis of diverse gas concentrations.
Connections are made between MQ-5 sensor, Arduino uno, buzzer, LED, as per the circuit diagram:
The components used to detect gas:
MQ-5 sensor It detects combustible gases in most Arduino projects
These are low cost, easy to use sensors with a wide detection range that may be reduced to modify
sensitivity
There are four pins on the MQ-5 sensors module two of which are VCC, GND,DO,AO. The power LED
Turns on when the board is powered up.
VCC: provides +5v for sensor circuit
□ METHOD GND: common ground pin
DO: gives digital output from sensor
AO: output analog voltage in proportional to the concentration of smoke/gas
It is equipped with input or output pins to connect to various sensors and other components .it is user
Arduino UNO
friendly IDE uses a simplified version of high level languages
`Buzzer Used as an alarm, to alert the user of the presence of GAS leaks
Jumper wires are used to create connections between different points on bread board or electronic
Jump wires
components
int smokeA0=A0; void loop() {
int buzzer =11; sensorValue=analogRead(smokeA0);
float sensorValue; if(sensorValue > 300)
void setup() { {
pinMode(buzzer,OUTPUT); Serial.print(" | Smoke detected!");
pinMode(smokeA0,INPUT); tone(buzzer,1000,200);
Serial.begin(9600); // sets the serial port to 9600 }
□ DATA(CODE) Serial.println("Gas sensor warming up!");
delay(20000); // allow the MQ-6 to warm up
else
{
noTone(buzzer); Serial.print(" | Smoke not detected!");
} noTone(buzzer);
}
delay(1000); // wait 2s for next reading
}
The gas detector system efficiently accomplishes its intended purpose.
The results demonstrates that the system efficiently manages in detecting the smoke after which the led glows and the buzzer
□ RESULT AND
DISCUSSION sounds as the indication.
The system incorporates to a smooth and reliable user experience.
Gas sensors are devices that help us understand the amount of gas in the environment and the natural state of its movement. Gas
sensors reveal the amount of gas in the environment and the nature of the gas composition with electrical signals and can provide
its change
Gas detection sensors are most commonly used to develop an IoT-powered system and identify the variation of toxic gases
□ CONCLUSION around an industrial facility. It helps benefit the factories and refineries by keeping them safe against any unexpected threats like
explosions.
Gas detection is critical in facilities across all applications, ranging from food and beverage to chemical production and
wastewater treatment. Gas detection systems provide continuous monitoring of toxic and combustible gases for compliance with
industry and workplace safety standards.
DATE OF SUBMISSION
STUDENT SIGNATURE: TEACHER SIGNATURE: