Posts

Showing posts from 2021

Automatic Obstacle Dictector

Image
This is to present you a simple and cost-efficient obstacle detecting Circuit. The system was implemented in C++ type Arduino coding Software. Inputting the data and processing it in Arduino; all were digitally maintained; the digital pins of Arduino were used. And the outputs were controlled by the Arduino which were pre-given. This simple, cost efficient and mostly accurate project can be used in farming as well as defense and security sector of any country. Components Required Arduino NANO or Uno (any version) HC-SR04 Ultrasonic Sensor Battery LED Chassis Jumper Wires Circuit Diagram Circuit Diagram UItrasonic Sensor Ultrasonic sensor working Ultrasonic sensors also known as Sonar sensors have been in use for decades. They were once used for mapping of ships in sea and detection of broken/faulty parts in mechanical systems. The ultrasonic sensor works by transmitting ultrasonic waves and these waves strike with obstacles placed in front of the transmitter. The waves are reflected an...

Humidity Dictator Using DHT11 Sensor

Image
DHT11 is a Humidity and Temperature Sensor, which generates calibrated digital output. DHT11 can be interface with any microcontroller like Arduino, Raspberry Pi, etc. and get instantaneous results. DHT11 is a low cost humidity and temperature sensor which provides high reliability and long term stability. In this project, we will build a small circuit to interface Arduino with DHT11 Temperature and Humidity Sensor. One of the main applications of connecting DTH11 sensor with Arduino is weather monitoring. We have already seen about humidity, relative humidity, humidity sensors and their types in this article. DHT11 Sensor The Schematics Circuit Diagram Components Required Arduino UNO [Buy Here] DHT11 Temperature and Humidity Sensor Breadboard (or perfboard) Power supply 16 x 2 LCD Display [Buy Here] 10K Ohm Potentiometer 5K Ohm Resistor (1/4 W) Connecting wires Circuit Description We will see the circuit design of DHT11 interfacing with Arduino. The DHT11 Humidity and Temperatur...

A C- Program That Can Calculate Student CCGP

Procedure: 1:Open A C Program App such as CppDroid,Devc++ etc. 2:Write the below  code //programme that will calculate CGP #include #include #include int main(){ float A,B,C,D,E,F; float U,V,W,X,Y,Z; float MTH207,CVE211,GSP201,GSP207,EE211,ME261; float MTH206,MTH208,CVE221,GSP202,GSP208,ECE272; float GP1; float GP2; float CGP;      printf("please enter your score for MTH207..");      scanf("%f",&MTH207);      if(MTH207>=70 && MTH207  A=5;    }  else if(MTH207>=60 && MTH207    A=4;     }    else if(MTH207>=50 && MTH207    A=3;    }    else if(MTH207>=40 && MTH207    A=2;     }    else if(MTH207>=30 && MTH207     A=1;     }    else if(MTH207>=20 && MTH207             A=0;   }     printf("please enter your score for CVE211..");      scanf("%f",&CVE211);   if(CVE211>=70 && CVE211   B=5;    }  else if(CVE211>=60 && CVE211  B=4;   }     else if(CVE211...

A Program That Explains The Use of Switch Case in C-Programing Language

Procedure: Open your C program Software App such as CppDroid, DveC++ etc. Write in the Syntax Below //program that would Divide,Add and Subtract number using switch statement #include<stdio.h> #include<stdlib.h> int main(){      float ans; float value1,value2; int option;      printf("Enter the values: "); scanf("%f%f",&value1,&value2);  printf("Enter 1 for addition\n");     printf("Enter 2 for subtraction\n");     printf("Enter 3 for division\n");     printf("Enter 4 for mutiplication\n");     scanf("%d",&option);     switch(option){         case 1:         ans=value1+value2;         printf("%f+%f=%f",value1,value2,ans);       break;        case2:         ans=value1-value2;         printf("%f-%f=%f",value1,value2,ans);        ...

Door Knock Alarm

Image
Circuit Diagram Knock sensor is an essential component and it is used in automobiles. This sensor is located in the minor engine block, head of the cylinder. This sensor is mainly designed to generate the voltage signal depending upon the vibrations which are occurred due to the explosion. When we observe or hear a knock or ping sound along with the noise of an engine in cars is pre-ignition. This ignition can be occurred due to the air mixture or pocket of fuel ignited in front of the flame from the flash plug. So there will be a small shock wave can be occurred around the ignition, which can increase the pressure within the cylinder. In some cases, this can damage the engine. What is a Knock Sensor ? The knock sensor is one kind of sensor used to detect the flash knock. This flash is the state within the engine of the automobile where the fuel starts burning because of the pre-ignition, detonation, otherwise pinging. The main function of this sensor is to monitor the ignition process...