Wind Speed Sensor

I have an Wind Speed Sensor that produce an square pulse signal at 1 V output. The output is not an PWM signal, but it change its frequency according to the speed of the "rotor" (but always 1 V). I have hooked up the sensor to an oscilloscope and a frequency counter. The values is from 3 Hz up to 150 Hz, or even more at full speed.
The supply voltage for the unit is 9V.

Is it possible to hook this up to an Arduino and get out some values that can be used to calculate the wind speed in knots or m/s? Do I need some additional circuits?

BR Frode

Sure.

I don't think 150 Hz is too fast to handle.
I'd use a transistor (and a few accompanying components) to amplify the signal, and put it into an input that can generate interrupts.
You'd have to learn how to handle such interrupts correctly, a lesson that consists of multiple layers.
If this is your 1st experience with Arduino (and the like), this would form a bit of a steep learning curve.

Did you get an instruction sheet with it? If not, can you post a link to the seller's page or the brand name and part number? Be very careful that the 9V from the power supply does not get through to Arduino input pins.

You can use the built in analog comparator to read that signal. Good short tutorial here.

If the sensor is not already calibrated in terms of pulse frequency -> knots, m/s or miles per hour, a good way to calibrate it is to attach it to a vehicle, and on a wind still day, drive at various speeds, recording the output.

What irks me is that 1V output, it feels odd. I would expect either 9V (the supply voltage) or an open collector output requiring external pull-up. Do you have a data sheet of this sensor?

150 Hz is no problem for an Arduino, but you may want to connect an interrupt to make sure you don't miss pulses.