0% found this document useful (0 votes)
16 views10 pages

Exam Rec

The document describes several experiments conducted using an Arduino kit. Experiment 1 involves identifying metal and non-metal objects using an inductive proximity sensor. Experiment 2 involves using a temperature sensor to read the temperature of a liquid-filled container and control a heater based on the temperature reading. Experiment 3 involves using an IR sensor to automatically open a sliding door when movement is detected and closing it after 5 seconds if no further movement is detected.

Uploaded by

hitheshshtt
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
16 views10 pages

Exam Rec

The document describes several experiments conducted using an Arduino kit. Experiment 1 involves identifying metal and non-metal objects using an inductive proximity sensor. Experiment 2 involves using a temperature sensor to read the temperature of a liquid-filled container and control a heater based on the temperature reading. Experiment 3 involves using an IR sensor to automatically open a sliding door when movement is detected and closing it after 5 seconds if no further movement is detected.

Uploaded by

hitheshshtt
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 10

DATE:22-08-2023 Exp No:01 PAGE No:01

Illustrate identification of metal object and non-metallic object.

Aim: To identify the metal object and non-metallic object.


Apparatus required:
 PC with Arduino Software
 Arduino kit
 Jumper Wires
 Inductive Proximity Sensor
Program:
int irpin=13;
int b=12;
void setup()
{
pinMode(13,INPUT);
pinMode(12,OUTPUT);
}
void loop()
{
int irpic=digitalRead (13);
if(irpin=HIGH)
{
digitalWrite(12,HIGH);
}else{
digitalWrite(12,LOW);
}
}

Result: Identification of metal object and non-metallic object is Verified.


DATE:23-08-2023 Exp No:02 PAGE No:02

Read the temperature of the liquid filled container, if temperature is less than
25 degreeC turn on the heater, turn off the heater if temperature is 27 degree C.

Aim: To Read the temperature of the liquid filled container, if temperature is less than
25 degree C turn on the heater, turn off the heater if temperature is 27 degree C.
Apparatus required:
 PC with Arduino Software
 Arduino kit
 Jumper Wires
 Temperature Sensor (LM35)
Program:
float temp;
int tempPin = A0;
int led=13;
void setup()
{
pinMode(13,OUTPUT);
Serial.begin(9600);
}
void loop()
{
temp = analogRead(tempPin);
temp = temp * 0.48828125;
Serial.print("TEMPERATURE = ");
Serial.print(temp);
Serial.println("*C");
delay(1000);
if(temp>=25)
{
digitalWrite(13,HIGH);
DATE:23-08-2023 Exp No:02 PAGE No:03

}
else
{
digitalWrite(13,LOW);
}
if(temp<=27)
{
digitalWrite(13,HIGH);
}
else
{
digitalWrite(13,LOW);
}
}

Result: Read and Perform the application of Liquid filled container is Verified.
DATE:23-08-2023 Exp No:03 PAGE No:04

Open the sliding door of shopping mall automatically in the presence of


movement in front of the door, wait for 5 sec and if no movement in front the
door close the door.

Aim: To open the sliding door of shopping mall automatically in the presence of
movement in front of the door, wait for 5 sec and if no movement in front the door
close the door.
Apparatus required:
 PC with Arduino Software
 Arduino kit
 Jumper Wires
 IR Sensor
Program:
int irpin=13;
int b=12;
void setup ()
{
pinMode(13,INPUT);
pinMode(12,OUTPUT);
}
void loop ()
{
int irpin= digitalRead(13);
if(irpin == LOW)
{
digitalWrite(12,HIGH);
delay(5000);
}else {
digitalWrite(12,LOW);
}
}
DATE:23-08-2023 Exp No:04 PAGE No:05

Illustrate how we can build a RF id based main gate.

Aim: To build a RF id based main gate.


Apparatus required:
 PC with Arduino Software
 Arduino kit
 RFID Tag
 Jumper Wires
Program:
int count = 0;
char input[12];
boolean flag = 0;
#include <Servo.h>
Servo myservo;

void setup() {
Serial.begin(9600);
myservo.attach(9);
}
void loop() {
if (Serial.available()) {
count = 0;
while (Serial.available() && count < 12) {
input[count] = Serial.read();
count++;
delay(5);
}
input[count] = '\0';
Serial.println(input);
DATE:23-08-2023 Exp No:04 PAGE No:06

if (strcmp(input, "14004AAD699A") == 0) {
Serial.println("The door is open");
myservo.write(0);
delay(1000);
myservo.write(180);
delay(1000);
} else {
Serial.println("Error");
}
}
}

Result: RFID based main gate is build and Verified.


DATE:23-08-2023 Exp No:05 PAGE No:07

Build a circuit to illustrate how we can build a wavy moving robot with
obstacle sensing.

Aim: To Build a circuit to illustrate how we can build a wavy moving robot with
obstacle sensing.
Apparatus required:
 PC with Arduino Software
 Arduino kit
 IR Sensor
 Jumper Wires
Program:
const int LED1=10;

const int LED2=11;

const int IR1=9; void setup()

{
Serial.print(9600); pinMode(LED1,OUTPUT); pinMode(LED2,OUTPUT);

pinMode(IR1,INPUT);
}
void loop()
{
if(IR1==HIGH)
{
digitalWrite(LED1,HIGH);
}else{
digitalWrite(LED1,HIGH);

delay(1500);

digitalWrite(LED2,HIGH);

delay(1500);

}
}

Result: Wavy moving robot with obstacle sensing is build and Verified.
EXP:-06 DATE:-22-08-2023 Page:-06

6. Build a circuit to monitor room brightness and turn on room light during
darkness.
AIM:-
To built an circuit to turn ON the lights during dark using LDR.
Apraturs required:
o PC with aurduino software installed.
o Arduino kit & jumper Wires
o LDR

Answer :
int LDR=A0;//Set A0(Analog Input) for LDR. int LED1=3;
int value=0;
void setup()
{
Serial.begin(9600);
pinMode(LDR,INPUT);
pinMode(LED1,OUTPUT);
}
void loop()
{
value=analogRead(LDR);//Reads the Value of LDR(light). Serial.println("LDR value is :");//Prints the
value of LDR to
Serial Monitor. Serial.println(value);
if(value<300)
{
digitalWrite(LED1,HIGH);//Makes the LED glow in Dark.
}
else
{
digitalWrite(LED1,LOW);//Turns the LED OFF in Light.
}
}
EXP:-07 DATE:-22-08-2023 Page:-07

7. Illustrate identification of metal object and non-metallic object.


AIM:-
To identify an metal and non-metalic object with using inductive proximity
sensor.
Apraturs required:
o PC with aurduino software installed.
o Arduino kit & jumper Wires.
o Inductive proximity sensor.

Answer :

const int sensor =8;//sensor defined const int led =13;


void setup()
{
pinMode(sensor,INPUT);//pin defined pinMode(led,OUTPUT); Serial.begin(9600);
}
void loop()
{
int status=digitalRead(sensor); if(status==HIGH)//metal detected
{
Serial.println("metal object is found"); digitalWrite(led,HIGH);
delay(1000);
}
else
{
digitalWrite(led,LOW);//Non metal detected delay(1000);
}
}
EXP:-08 DATE:-22-08-2023 Page:-08

8. Build a circuit to transfer room temperature to mobile phone using


Bluetooth.
AIM:-
To built an circuit to transfer a room temperature to mobile phone using
Bluetooth module.
Apraturs required:
o PC with aurduino software installed.
o Arduino kit & jumper Wires.
o Bluetooth (HC 05).

Answer :
#include <SoftwareSerial.h>
SoftwareSerial bt(0,1);
const int LM=A0;
float temp=0;
void setup()
{
Serial.begin(9600);
}
void loop()
{
temp=analogRead(LM);
temp=temp/2.62; Serial.print("temperature");
Serial.print(temp); delay(1000);

[b:GB200]=[b:y00000];
[b:GB201]=[b:y00001];
if([b:GB200]==1)
{
[w:GD200]=[w:GD200]+1;
if([b:GB201]==1){if([w:GD200]=400;}
if([w:GD200]==800)
{[w:GD200]=0;}
}

You might also like