Physics Project
Physics Project
AIM:-
“The aim of this project is to build a basic air
defense system that uses an ultrasonic sensor
to detect nearby objects and two servos to aim
and fire a small projectile. The system is
controlled by an Arduino Nano and shows how
sensors and motors can work together for
automated detection and response. This project
demonstrates simple object detection, targeting,
and firing mechanics.”
ACKNOWLEDGEMENT
I would like to express my special thanks of gratitude to
my PHYSICS teacher Mr. GIRISHKUMAR GOVINDAN
as well as our principal Mr. Ravi Rajesh who gave me
the golden opportunity to do this wonderful project on
the topic AIR DEFENCE SYSTEM, which also
helped me in doing a lot of Research and I came to
know about so many new things I am really thankful to
them. We also wish to acknowledge the collaborative
effort and dedication of our group members: KISHAN,
OMSWAROOP, VISHNU SUKESH ,Without their hard
work and enthusiasm, this project would not have been
possible. Lastly, we would like to thank our families and
friends for their encouragement and support during the
process.
THANKYOU
INDEX
●INTRODUCTION
●THEORY
●MATERIALS REQUIRED
●PROCEDURE
●CONCLUSION
●APPLICATION
●BIBLIOGRAPHY
INTRODUCTION
1. Ultrasonic Sensing:
Structural Materials:
void setup() {
Serial.begin(9600);
pinMode(trigPin, OUTPUT);
pinMode(echoPin, INPUT);
baseServo.write(baseAngle);
shoulderServo.write(shoulderAngle);
wristServo.write(wristAngle);
long getFilteredDistance() {
long totalDistance = 0;
digitalWrite(trigPin, LOW);
delayMicroseconds(2);
digitalWrite(trigPin, HIGH);
delayMicroseconds(10);
digitalWrite(trigPin, LOW);
totalDistance += distance;
currentAngle += step;
servo.write(currentAngle);
void loop() {
Serial.print("Distance: ");
Serial.print(distance);
Serial.println(" cm");
if (distance > 3 && distance < 45) { // Adjusted range for closer object
tracking
// Map distance to angle ranges for each servo
Military Operations:
Border Security:
1. ARDUINO.CC:-
For coding the programing board
2. Chatgpt:-
3. Google docs:-
THANKYOU