Skip to content

Ultrasonic distance sensor with Arduino and HC-SR04 (Arduino + HC-SR04)

Good night,

Going on with my adventures with Arduino and sensors, today I decided to play with Ultrasonic sensor HC-SR04 to measure distance.

HC-SR04 is pretty easy to work with, it has 4 pins, VCC to energy, Trig to start a measurement, Echo to get the distance, and GND to ground.

It has a library to get it working, it is called Ultrasonic. The only problem that I had was the Library is out of date, it still uses WProgram.h but Arduino 1.0.1 uses Arduino.h, so I updated it. (You can get on the end of the post).

The library must be included on your dir “arduino-1.0.1/libraries” and you must restart your IDE.

Sensor VCC connects to Arduino +5V pin
Sensor Trig connects to Arduino PIN 12
Sensor Echo connects to Arduino PIN 13
Sensor GND connnects to Arduino GND PIN

You can configure it on trig and echo variables.

[code lang=”c”]
#include “Ultrasonic.h”
int trig = 12;
int echo = 13;
Ultrasonic ultrasonic(trig,echo);

void setup() {
Serial.begin(9600);
}

void loop()
{
Serial.print(“Distance CM:”);
Serial.println(ultrasonic.Ranging(CM));
Serial.print(“Distance INC:”);
Serial.println(ultrasonic.Ranging(INC));
delay(100);
}
[/code]

Referências:
HC-SR04 DataSheet
Biblioteca Ultrasonic atualizada para Arduino 1.0.1

Published inAndroid

1,701 Comments

  1. Anthonyemock Anthonyemock

    Алкоголь является сильным наркотиком, зависимость формируется и на физиологическом, и на психологическом уровне, поэтому такое состояние требует комплексной работы сразу нескольких специалистов. Нарколог, врач общей практики, психолог, психотерапевт, психиатр и реабилитационный персонал помогают разобраться, почему человек начал пить, почему не может выйти из запоя самостоятельно, какие проблемы семьи усиливают употребление спиртного и нужна ли госпитализация. Главный вопрос при обращении — не только как быстро прокапаться, а как провести полный путь от детоксикации до устойчивой трезвости.
    Подробнее можно узнать тут – нарколог вывод из запоя анапа

Leave a Reply

Your email address will not be published. Required fields are marked *