Return to site

Ultrasonic Library Arduino For Proteus 8 Crack

broken image


You will learn how to interface Ultrasonic Sensor HC-SR04 with Arduino. It can be an Ultrasonic Range Sensor or any purposes.

Connect Trigger to digital pin 7 on your Arduino board. Connect Echo to digital pin 6 on your Arduino board. Connect GND with GND on Arduino. In our program, we have displayed the distance measured by the sensor in inches and cm via the serial port. Cider for mac. You will see the distance measured by sensor in inches and cm on Arduino serial monitor. Ultrasonic sensor normally used is HC-SR04, which is also used here in this library. Let's get started with Ultrasonic Sensor Library for Proteus, Ultrasonic Sensor Library for Proteus using which you can easily simulate this Ultrasonic sensor in Proteus and can also interface it with Arduino boards. Components we need is: Arduino uno R3.

  • 106,075 views
  • 4 comments
  • 31 respects

Components and supplies

Arduino UNO
You can use any version of Arduino, but i'll use Arduino UNO R3
×1
Ultrasonic Sensor - HC-SR04 (Generic)
×1
Adafruit RGB Backlight LCD - 16x2
It is OPTIONAL. If you don't have it you can use Arduino Serial Monitor to show the display.
×1
Jumper wires (generic)
10cm or longer Male to Male Jumper Wires
×4
Solderless Breadboard Full Size
You can use any breadboards you have.
×1

Necessary tools and machines

Tape Measure, Manual
You can use any measurement tools, you can also use a ruler.

Apps and online services

Arduino IDE
You can download this app for free in https://www.arduino.cc/en/main/software

About this project

Ultrasonic Sensor HC-SR04 is a sensor that can measure distance. It emits an ultrasound at 40 000 Hz (40kHz) which travels through the air and if there is an object or obstacle on its path It will bounce back to the module. Considering the travel time and the speed of the sound you can calculate the distance.

The configuration pin of HC-SR04 is VCC (1), TRIG (2), ECHO (3), and GND (4). The supply voltage of VCC is +5V and you can attach TRIG and ECHO pin to any Digital I/O in your Arduino Board.

Crack

The materials that we need to make this project:

1. Arduino UNO R3 CH340 (you can use any Arduino Boards)

2. Ultrasonic Sensor HC-SR04

3. Male to Male Jumper Wires

4. Breadboard



The connection of Arduino and Ultrasonic Sensor HC-SR04

In order to generate the ultrasound we need to set the Trigger Pin on a High State for 10 µs. That will send out an 8 cycle sonic burst which will travel at the speed sound and it will be received in the Echo Pin. The Echo Pin will output the time in microseconds the sound wave traveled.

For example, if the object is 20 cm away from the sensor, and the speed of the sound is 340 m/s or 0.034 cm/µs the sound wave will need to travel about 588 microseconds. But what you will get from the Echo pin will be double that number because the sound wave needs to travel forward and bounce backward. So in order to get the distance in cm we need to multiply the received travel time value from the echo pin by 0.034 and divide it by 2.

For the programming code, first we need to define the Trigger Pin and Echo Pin that connected to Arduino board. In this project EchoPin is attached to D2 and TrigPin to D3. Then define variables for the distance (int) and duration (long).

In the loop first you have to make sure that the trigPin is clear so we have to set that pin on a LOW State for just 2 µs. Now for generating the ultrasound wave we have to set the trigPin on HIGH State for 10 µs. Using the pulseIn()function you have to read the travel time and put that value into the variable 'duration'. This function has 2 parameters, the first one is the name of the echo pin and for the second one you can write either HIGH or LOW. In this case, HIGH means that the pulseIn() function will wait for the pin to go HIGH caused by the bounced sound wave and it will start timing, then it will wait for the pin to go LOW when the sound wave will end which will stop the timing. At the end the function will return the length of the pulse in microseconds. For getting the distance we will multiply the duration by 0.034 and divide it by 2 as we explained this equation previously. At the end we will print the value of the distance on the Serial Monitor.

Steps :

1. First do the wiring as shown in the picture

Arduino Nano Library For Proteus

2. Open Arduino IDE Software and write down your code, or download the code below and open it

3. Choose your own Arduino board (in this case Arduino Uno), by selecting Tools > Board > Arduino/Geniuno Uno

4. Choose your COM Port (usually it appears only one existing port), Tools > Port > COM. (If there are more than one ports, try it one by one)

5. Upload your code by pressing Ctrl + U or Sketch > Upload

6. To display the measurement data you can use Serial Monitor by pressing Ctrl + Shift + M (make sure that the baudrate speed is 9600)


Adobe cs3 activation key.

Results:

After uploading the code, display the data with Serial Monitor. Now try to give an object in front of the sensor and see the measurement.



Library Arduino Proteus Ares

For the consideration, you can use your manual tape meter to measure the distance and compare it with the distance on Serial Monitor. If you want to display it on LCD, you can follow the second wiring diagram and upload the code below.

Code

Ultrasonic Sensor HC-SR04 with Arduino Code for Ranging TestC/C++
Write your code in Arduino IDE Software, save it. Select the port (i.e COM3) and choose your Arduino board type (i.e Arduino Uno / Genuino) then compile it to your Arduino.
Ultrasonic Sensor HC-SR04 with Arduino and LCD CodeC/C++
If you want to display it on LCD, use this code and another wiring diagram (file included)

Schematics

uploads2ftmp2f94ff143c-17e9-43c4-8eb0-840121a648b82farduinohc-sr04_AXHYqJubMg.fzz
uploads2ftmp2f127eafbc-218a-42ff-85d3-fa4d0d7c6ca72farduinohc-sr04lcd_agQFBGr7rl.fzz

Author

Arbi Abdul Jabbaar
  • 2 projects
  • 0 followers

Published on

September 17, 2019

Arduino Uno Library For Proteus

Write a comment

Members who respect this project

and 24 others

See similar projects

Ultrasonic Library Arduino For Proteus 8 Crack Key

you might like

Table of contents

Write a comment

Ultrasonic Library Arduino For Proteus 8 Cracked

/* * Created by ArduinoGetStarted, https://arduinogetstarted.com * * Arduino - Ultrasonic Sensor HC-SR04 * * Wiring: Ultrasonic Sensor -> Arduino: * - VCC -> 5VDC * - TRIG -> Pin 9 * - ECHO -> Pin 8 * - GND -> GND * * Tutorial is available here: https://arduinogetstarted.com/tutorials/arduino-ultrasonic-sensor.php */int trigPin = 9; // TRIG pinint echoPin = 8; // ECHO pinfloat duration_us, distance_cm;voidsetup() {// begin serial portSerial.begin (9600);// configure the trigger pin to output modepinMode(trigPin, OUTPUT);// configure the echo pin to input modepinMode(echoPin, INPUT);}voidloop() {// generate 10-microsecond pulse to TRIG pindigitalWrite(trigPin, HIGH);delayMicroseconds(10);digitalWrite(trigPin, LOW);// measure duration of pulse from ECHO pin duration_us = pulseIn(echoPin, HIGH);// calculate the distance distance_cm = 0.017 * duration_us;// print the value to Serial MonitorSerial.print('distance: ');Serial.print(distance_cm);Serial.println(' cm');delay(500);}




broken image