nopnop2002 / esp-idf-ultrasonic

Ultrasonic distance sensor for ESP-IDF

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

esp-idf-ultrasonic

Ultrasonic distance sensor for ESP-IDF

I forked from here.

Hardware requirements

  • Ultrasonic ranging module like US-015/US-025/US-026/US-100/HC-SR04/HY-SRF05.

HY-SRF05-3

  • esp-idf-ultrasonic-Stick is for M5Stick

  • esp-idf-ultrasonic-StickC is for M5StickC

  • esp-idf-ultrasonic-Stack is for M5Stack

  • esp-idf-ultrasonic-WebSocket is for generic ESP32

Software requirement

esp-idf v4.4/v5.0.

Speed of sound

The speed of sound is affected by temperature and can be calculated with 331.5+0.61*temperature[m/sec].
If the temperature is 20 degrees, it will be 331.5+0.61*20=343.7[m/sec].
343.7[m/sec]=34370[cm/sec]=34.37[cm/millisec]=0.03437[cm/microsec]
Counting backwards, the time required for 1 cm is 29.0951 microseconds.
In other words, the desired distance [cm] when the temperature is 20 degrees can be calculated by dividing the round trip time [microseconds] from the time the sound wave is emitted until it returns by 29.0951*2 (approximately 58.2).
This example uses 58 as an approximation.
If you want more accuracy, you should measure the temperature at the same time and use the measured temperature to calculate the distance.

About

Ultrasonic distance sensor for ESP-IDF


Languages

Language:C 96.6%Language:HTML 1.2%Language:CMake 1.1%Language:JavaScript 0.9%Language:Makefile 0.2%Language:CSS 0.0%