Make Distance and Temperature Measuring Sensor
by Dushyanta in Circuits > Arduino
9733 Views, 34 Favorites, 0 Comments
Make Distance and Temperature Measuring Sensor
Hello friends. Today i am here to tell you how to make a distance measuring sensor which also tells you the temperature of your surrounding. If you want to measure distance of a object then you can use it or you are new to arduino projects. I made this because i want to do something interesting with my arduino. If you want to make some interesting projects with arduino then you are on right place. Friend this is my first instructable so please like it and also don't forget to comment on it. You are free to make my instructable better.
COMPONENTS:
for this project you need following part:
- Arduino UNO
- Ultrasonic sensor(HC-SR04)
- 16x2 LCD
- Temperature sensor(LM35)
- 10K potensio( i say it potensio you can call it variable resistance or preset)
- Breadboard
- some wires
Lets get started......
Connecting LCD to Arduino
Connect the lcd to arduino according to the circuit give in the picture above.
if you are new to LCD and want to check weather your LCD is working connect the LCD to arduino according to the connection given in picture and open your arduino software on your PC. go to File >Examples >liquidcrystal >Hello world and upload the sketch to your arduino board. If you see hello world on lcd then your lcd is working perfectly but if nothing is displayed on your LCD just adjust the potensio and your LCD will start working.
Connecting Ultrasonic Sensor
• connect vcc pin of of sensor to arduino 5v pin
• connect trig pin of sensor to arduino digital pin 8
• connect echo pin of sensor to arduino digital pin9
• connect gnd pin of sensor to arduino gnd pin
if you want to check your ultrasonic sensor upload the following program to your board
#define trigPin 8
#define echoPin 9
void setup(){
Serial.begin(9600);
pinMode(trigPin, OUTPUT) ;
pinMode(echo pin, INPUT) ;
}
void loop() {
int duration,distance;
digitalWrite(trigPin,HIGH);
delayMicroseconds(1000);
digitalWrite(trigPin,LOW);
duration=pulseIn(echoPin,HIGH);
distance=(duration/2)/29.1;
Serial.print(distance);
Serial.print(" cm");
delay(500);
}
Connecting LM35 to Arduino
now we will connect LM35 to Arduino.
- connect vs pin to 5v
- connect vout pin to analog pin A0
- connect gnd pin to gnd in arduino board
here is a program to check your LM35.
Downloads
The CODE
here is the code for distance and temperature measuring sensor. Upload it to your board and have fun with your project. Don't forget to like and comment