MQTT Based Fire Detection System

In recent days, automatic fire detection and control is becoming very essential to reduce the fire in a building or an industry. It provides real-time surveillance, monitoring and automatic alarm. A key aspect of such systems is to identify a developing fire emergency in a timely manner, and to alert the building’s occupants and nearby fire stations.

In this Instructable, we will learn how to create a low cost fire detection system in which different subsystems communicates with each other over the Internet. This project is a combination of electronic circuits, programming and networking mechanisms working together to detect the presence of fire and provides an alert through a visual medium. Furthermore, the usage of light weight MQTT protocol aids in (almost) real-time execution and parsing of the critical data.

In this project, we consider an example of an organization which has one headquarters(HQ) and four sister institutions. All five firms of the organization has a control room each to monitor the fire status of the sister institutions. All control rooms receive the fire status of the four sister institutions and visually alerts the control room personnel by the glowing of respective LED (for eg., if there is a fire emergency in Institution 1, then LED 1 in all the control rooms glows). At the sister institutions, fire is detected using infrared sensors (Note: Hot objects emit Infrared Rays). The communication between the control rooms are performed using the MQTT protocol. The control room at the sister institutions are based on NodeMCU and acts as a node in the network. On the other hand, the control room at the HQ is equipped with a Raspberry Pi and acts as a broker. To display the fire status, another instance of a node is created at the Raspberry Pi.

This project brushes over the following topics:

  1. SSH Raspberry Pi
  2. Raspberry Pi as an MQTT broker
  3. Port Forwarding
  4. NodeMCU as publisher and subscriber
  5. Raspberry Pi as a subscriber
  6. File transfer over IP address (SFTP)

Step 1: Materials Required

  1. LEDs x 20
  2. Resistor x 5
  3. NodeMCU x 4
  4. Raspberry PI 2 x 1
  5. Ethernet Cable x 1
  6. Network Router with Internet Connectivity x 1
  7. Breadboards x 9
  8. Infrared Sensors x 4
  9. Micro USB Cable x 5
  10. Wires (Male to Male, Male to Female)

Step 2: Enable SSH on Raspberry Pi

Communicating with Pi using SSH has the following advantages:

  • Connecting peripherals like keyboard and mouse on Pi can be avoided.
  • We can work on Pi remotely.

By default, SSH service on Raspberry Pi is turned off. To enable this service, the following steps are done:

1. Type the following command on the terminal

$ sudo raspi-config

(Note: You may enter $ sudo -i to enable root access for the user)

2. Select ‘Interfacing Options‘ (#5) on the window that pops up.

3. Select ‘SSH‘ (#2)

4. Click ‘Yes‘ to enable the service.

5. Click ‘OK

6. Click ‘Finish

Step 3: Access Pi Through Putty

Putty is a terminal emulator.

1. Connect Raspberry Pi to a network router via an Ethernet cable

2. Enter the following command in the Pi’s terminal to know the local IP address of the Raspberry Pi.

$ ifconfig

3. Note down the IP address that is written after “inet addr:”

4. Download and Install Putty on your computer from www.putty.org (Make sure that your computer is connected to the same network as the Raspberry Pi)

5. Open Putty, Select ‘SSH’ and type in the IP address that was noted down earlier.

6. Enter the log in credentials of Raspberry Pi in the terminal window that opens up.

Step 4: Understanding MQTT

MQTT is a light weight messaging protocol that stands for MQ Telemetry Transport. In an MQTT system, several clients or nodes may be connected to a broker(/server). The clients publish certain data as a message under a specific topic. Any other client which is interested in receiving that data, subscribes to the respective topic. All the data transfer is performed via the broker.

The following link would provide a deeper insight to the theory of MQTT: http://internetofthingsagenda.techtarget.com/defin…

Source: MQTT Based Fire Detection System


About The Author

Muhammad Bilal

I am a highly skilled and motivated individual with a Master's degree in Computer Science. I have extensive experience in technical writing and a deep understanding of SEO practices.

Scroll to Top