I am completely new to Arduino and I want guidance on how to go by in my project:
I have a 40kHz ultrasonic receiver and I want to see the signal received on my computer using Arduino.
It should be a bit accurate, what do I need to do/use?
I am completely new to Arduino and I want guidance on how to go by in my project:
I have a 40kHz ultrasonic receiver and I want to see the signal received on my computer using Arduino.
It should be a bit accurate, what do I need to do/use?
It should be a bit accurate
Right.
Use an oscilloscope.
https://playground.arduino.cc/Main/SharpIR
if u want it to be super accurate, a matrix lookup table.
feedback/echo is a major problem too if in a closed area
tzijie:
Arduino Playground - HomePageif u want it to be super accurate, a matrix lookup table.
feedback/echo is a major problem too if in a closed area
IR != ultrasound
I've never had feedback problems with ultrasound.
AWOL:
IR != ultrasoundI've never had feedback problems with ultrasound.
oh my bad. I've worked with ultrasonic and IR for quite a while last year, got the wrong bookmark.
i was doing a maze solving robot last year, which uses ultrasound n IR. ultrasound pulses through the arena(2m square) and obstacles quite a bit. readings were sometimes jitterish.
had to do a take a bunch of readings, sort it and get its median
Maybe you're confusing "echoes" with "feedback".
Try not to do that.
Leaving enough time between readings should deal with the echoes. That's what I had to do measuring the water level in a smallish enclosed reservoir using ultrasound. A short delay was all it took to get much better readings.