Skip to main content

Posts

Showing posts from May, 2020

IOT: HEART MONITORING SENSOR

Corona virus (Covid 19) is spreading all around the world. Many lives have been at risk due to this pandemic. Most of the family members could not even reach their home. How about if you could take care of your family remotely ? How about if you could get your distant family member's health statistics from remote location and call for help in emergencies. This project explains how heart beat of a person can be received over a smartphone. Circuit diagram: Code:   #include <ESP8266WiFi.h> #include <Servo.h> Servo servo; //Static IP address configuration IPAddress staticIP(192, 168, 225, 81); //ESP static ip IPAddress gateway(192, 168, 225, 1); //IP Address of your WiFi Router (Gateway) IPAddress subnet(255, 255, 255, 0); //Subnet mask //Define wifi configuration const char* ssid = "YOUR_SSID"; const char* password = "YOUR_WIFI_PASSWORD"; // Create an instance of the server WiFiServer server(80); void setup() { Serial.begin(9600); // pre

IOT : FIRE DETECTION SYSTEM

IoT projects have gained immense popularity due to their ability to leverage the power of interconnected devices and data to create innovative solutions across various domains. IoT projects involve integrating sensors, actuators, and communication technologies to enable the seamless exchange of data between physical devices and the internet. These projects range from simple DIY experiments to complex industrial applications, each offering unique opportunities to transform our lives and improve efficiency. Whether it's creating a smart home automation system, monitoring environmental conditions, optimizing energy usage, or developing intelligent transportation systems, applications of IoT open up a world of possibilities for innovation and connectivity. By harnessing the potential of IoT, we can build intelligent and interconnected systems that revolutionize industries, enhance daily life, and pave the way for a more efficient and sustainable future. In this project we will be using

IOT : GARDEN WATER SPRINKLER SYSTEM

IoT projects have gained immense popularity due to their ability to leverage the power of interconnected devices and data to create innovative solutions across various domains. IoT projects involve integrating sensors, actuators, and communication technologies to enable the seamless exchange of data between physical devices and the internet. These projects range from simple DIY experiments to complex industrial applications, each offering unique opportunities to transform our lives and improve efficiency. Whether it's creating a smart home automation system, monitoring environmental conditions, optimizing energy usage, or developing intelligent transportation systems, applications of IoT open up a world of possibilities for innovation and connectivity. By harnessing the potential of IoT, we can build intelligent and interconnected systems that revolutionize industries, enhance daily life, and pave the way for a more efficient and sustainable future. In this project we will be using

HOW TECHNOLOGY CAN BE USED TO DELIVER FOOD TO DIFFERENT LOCATION

Lock-down  4.0 started. Due to corona pandemic food delivery services are shut.  All transport services are shut too. In this critical time , social distancing has become  very serious concern. But how about technology that delivers food instead of human beings.  This way food delivery people as well as customers  both are safe. How it's possible , check this video Video credits : Droni tech UAV innovations

HOW TECHNOLOGY CAN BE USED TO PLANT MORE TREES

What could be the quick and better way to plant maximum trees in less possible time. A drone developed by Sankalp taru foundation of Uttarakhand, India  has capacity to carry around 10000 - 15000 seeds at a time.  For more details about these tree plantation, watch the video. Video credits : NDTV

AIR POLLUTION DETECTOR

Corona virus (Covid 19) is spreading all around the world. Polluted air can cause a lot of health diseases. But how to find out if the air around us is polluted or not. This is the simple project that detects air pollution and returns analog value. This data can be further used to keep ourselves alert and take precaution from polluted air. CIRCUIT DIAGRAM : CODE : #include <ESP8266WiFi.h> #include <Servo.h> Servo servo; //Static IP address configuration IPAddress staticIP(192, 168, 225, 81); //ESP static ip IPAddress gateway(192, 168, 225, 1); //IP Address of your WiFi Router (Gateway) IPAddress subnet(255, 255, 255, 0); //Subnet mask //Define wifi configuration const char* ssid = "YOUR_SSID"; const char* password = "YOUR_WIFI_PASSWORD"; // Create an instance of the server WiFiServer server(80); void setup() { Serial.begin(9600); // prepare GPIO 4 servo.attach(4); //Motor in home position servo.write(90);

IOT DISPENSER

Corona virus (Covid 19) is spreading all around the world. Hence it's very important to keep our hands sanitized. Here is the simple project to build an electronic hand sanitizer that can be operated using smartphone via bluetooth. IoT projects have gained immense popularity due to their ability to leverage the power of interconnected devices and data to create innovative solutions across various domains. IoT projects involve integrating sensors, actuators, and communication technologies to enable the seamless exchange of data between physical devices and the internet. These projects range from simple DIY experiments to complex industrial applications, each offering unique opportunities to transform our lives and improve efficiency. Whether it's creating a smart home automation system, monitoring environmental conditions, optimizing energy usage, or developing intelligent transportation systems, applications of IoT open up a world of possibilities for innovation and connectivit