Air Ultrasonic Transd. 400ST/R100- how to connect?

hello all

i would like to experiment with ultrasound rx/tx and the arduino uno.
i have got one sensor for emission (40kHz) and one receiver. Both have only 2 pins each marked with "+" and "-".
How do i connect the sensors to the arduino?
My search only found sensors with 3 pins, ground, vcc and the data pin connecting to arduino on digital pin 7.

following link shows data sheet of my both parts:
http://www.prowave.com.tw/pdf/T400S10.PDF

thanks and regards to everybody.

as i can not post web links yet please google "400ST/R100" for the data sheet of my sensor hardware.

I don't think so. Now that you've made your first post, you can post links. Modify your original posts, and add them.

Doing so removes all ambiguity as to which device(s) you have.

If you do some googling on various terms, such as:

  • arduino
  • atmega
  • pic
  • sonar
  • ultrasonic
  • transducer

...you'll find a few circuits (a good way to find them is to do a google image search, then back-search the link if necessary). For example, here's a PIC-based sonar:

You don't really care about the PIC portion of the system; you only care about building the transmitter and receiver portions. Note how simple the transmitter section is compared to the receive section? That's because you need to amplify and filter the received signal in order to be able to read it with a microcontroller.

Now - I am not saying that the above circuit is the "be-all-end-all" circuit, nor might it be the best. You're going to have to do some searching on this one. Essentially, you need to create an amplifier for the transmit side, and generate a 40 KHz signal with the microcontroller (Arduino in your case) to drive it. One thing I noticed about the above circuit was that it seemed to only drive the transducer in a single direction; these transducers should actually be driven by a push-pull amplifier, and many can handle quite a large voltage swing (in your case 10 volts RMS - or about a +/- 5V swing around 0 volts). Ideally, you'd want a way to move the transducer in this fashion, at the frequency needed (40 KHz). Moving it in only a single direction reduces its efficiency.

The receive section is the more difficult area to build (in all but the simplest schematics I have seen), but it is necessary if you want to be able to have good range and accuracy. Also - it is possible to build the circuit so that only a single transducer is needed. One place I found for interesting circuits of this nature (for their own transducers - so you may need to play a bit):

Here's some more info - you could probably adapt one of the circuits shown:

Note the strange "back-to-back" diode arrangement? That's the key to a single-transducer system...

Something else to keep in mind - although some have pointed out that it isn't absolutely necessary, having an oscilloscope and a frequency generator for development of ultrasonic ranging circuits can be helpful; but generally, if you can tune your code to generate the frequency needed, you're most of the way there (where the scope comes in handy is tuning the receiver and transmitter together to get the best signal; its possible to eyeball it for "goodenuff", though).

:slight_smile:

Somebody also posted this in another thread - it may be helpful in your designing of the transmitter/receiver circuitry:

http://www.ee.latrobe.edu.au/~djc/UltraSonics/Ultrasonics.htm

:slight_smile:

ok thanks for the answers

so basically i can not use just the transmitter and receiver alone, what i had hoped, but must include some more parts to make it work.

:slight_smile:

so basically i can not use just the transmitter and receiver alone, what i had hoped, but must include some more parts to make it work.

Yes what you apparently have are just the raw pizo sensors without any of the electronic to drive and receive from them. Most of the popular ultrasonic sensor modules include the required electronics built into them and are designed for direct connection to a micro-controller using logic level voltages, not the low level analog values used by the raw sensors.

Lefty