#include <MQ2.h>
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
//I2C pins declaration
LiquidCrystal_I2C lcd(0x27, 16, 2);
Control AC Appliances with ESP8266 NodeMCU with a Relay Module
Posted on by Rolan Gaspar Pereira
Introduction
We try to think how wireless devices function. How we can control various devices from any part of the world and so many othe
Flame Detection and Fire Alarm System with KY-026 using an Arduino
Posted on by Rolan Gaspar Pereira
Introduction
In today's world, safety and security are paramount concerns, especially when it comes to fire hazards. Creating a reliable fire
Errors found while uploading a simple SoftwareSerial Code on the Arduino for HC-05
Posted on by Rolan Gaspar Pereira
Discover the potential of the HC-05 Bluetooth module when combined with Arduino for seamless wireless communication. In this guide, we delve into the
Code for DHT11 Sensor Reading Web Application
Posted on by Rolan Gaspar Pereira
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<t
Code for Logging DHT11 Sensor Data on a Realtime Database (Firebase)
Posted on by Rolan Gaspar Pereira
#include <Arduino.h>
#include <WiFi.h> //we are using the ESP32
//#include <ESP8266WiFi.h> // uncomment t
Code for Asynchronous Websever with the ESP32
Posted on by Rolan Gaspar Pereira
//Include all the required Libraries
#include <WiFi.h>
#include <AsyncTCP.h>
#include <ESPAsyncWebServer.h>
//Add your WiFi details
c
How to code a 4 Digit 7 segment display using Arduino?
Posted on by Rolan Gaspar Pereira
The 4 digit 7 segment display in an intermediate level project. This project is mainly focused on how to connect the 4 digit 7 segment display with t
How to use Bluetooth on the ESP32 ?
Posted on by Rolan Gaspar Pereira
Introduction
The ESP32 comes in-built WiFi, Bluetooth and BLE (Bluetooth Low Energy). We will generally use more of WiFi with ESP32 but the Bl
How to make an ESP32 Web Server?
Posted on by Rolan Gaspar Pereira
Web Server is a computer software with underlying hardware that accepts requests from HTTP. We are going to build a web server with the ESP32 that w