AnalogIn.Read() (and how it relates to sensors)

I was thinking of getting an Ultrasonic Maxbotix LV-EV sensor.

Looks like this would connect in similar fashion to the Sharp IRs do to a FEZ - using an analog pin, and the corresponding AnalogIn object in NETMF.

The question I have is this: How is the sensor reading started? Meaning:

(1) Are these sensors always running? So that when you do a AnalogIn.Read() and it just returns the last value.

Or

(2) When you do a Read(), it sends a signal (that’s abstracted by NETMF/GHI) to the device, that starts the sensor reading process (in this case generate a sound wave and process the results)?

Thanks

From the first lines of the datasheet:

[quote]The
interface output formats included are pulse
width output, analog voltage output, and
serial digital output.[/quote]

When you use the analog voltage output, you can just do AnalogIn.Read()

Right … that much I get:

What I was wondering is this:
Does the Read() “trigger” something in the sensor to start it’s process?

For example this ultrasonic - is it continally generating it’s sound wave and processing the result as long as it’s receiving power? Then when do a Read() it just returns the last result?

Or is it sitting domant, when you issue the Read() it at point generates the wave, processes the result, and then go back to “sleep”, waiting for the next request?

your answer is this: