Created as a showcase project, AMAZE-28, the single-room summer house, was successfully constructed within 28 days on the grounds of the Kerala State Nirmithi Kendra. The 3D-printed building at the Kerala State Nirmithi Kendra in Thiruvananthapuram. (Photo: Shekunj) The inauguration of Kerala's inaugural 3D-printed structure, a 380-square-foot single-room summer house, is scheduled to take place on October 10 at the Kerala State Nirmithi Kendra (Kesnik) campus located in PTP Nagar, Thiruvananthapuram. Conceived as a showcase initiative, the summer house named AMAZE-28 was successfully finished within a mere 28 days. This impressive project was executed by Tvasta, a construction technology startup based in Chennai, founded by alumni of IIT-Madras, who have entered into a memorandum of understanding (MoU) with Kesnik. AMAZE-28 is perched upon a concrete foundation atop a gentle elevation within the Kesnik campus. Febi Varghese, the Director and Chief Executive Officer of...
Here, we are going to study about flame detection sensor and interfacing it with Arduino to make FIRE ALERT SYSTEM. It will detect fire (Flame) and create an alert. It can be implemented in a system like a fire extinguishing robot. So, let's get started. 😊😊💻
Components Required
First, we must collect the required components for this project. The list of all components is given below.
- Arduino UNO
- Flame Sensor
- LED
- Resistor (220 Ohm)
- Buzzer
- Bread Board
- Jumper Wires
Components needed for Fire alert System |
Circuit Diagram -
Now we have to connect the flame sensor with Arduino at the input pins and buzzer and LED at output pins which we have defined in our code. The complete circuit diagram is shown in the image below.
Circuit Diagram of Fire Alert System |
We have seen the circuit diagram for the project. Now let's move towards the coding part of the project. Arduino code for this project is given below.
// FIRE ALERT SYSTEM // Project by - TechKnowLab int sens = A0; //Sensor pin int led = 8; // LED pin int bzr = 9; // Buzzer pin int val = 0; // variable to store the value of Sensor void setup() { pinMode(sens, INPUT); pinMode(led, OUTPUT); pinMode(bzr, OUTPUT); Serial.begin(9600); } void loop() { val = analogRead(A0); Serial.println(val); delay(100); if ( val < 200 ) { Serial.println("FIRE!"); digitalWrite(led, HIGH); digitalWrite(bzr, HIGH); } else{ digitalWrite(led, LOW); digitalWrite(bzr, LOW); } }
Now after preparing the Arduino code, let's flash it into the Arduino. After flashing the code in Arduino, our project is ready to work. Let's see the working of this Fire Alert System in the video given below.
I hope you like the post and learn about the flame detection sensor and how to interface it with Arduino to make a Fire Alert System. Keep exploring and expand your knowledge.
Comments
Post a Comment