Most of the topics I found (dating before 2011) about this one sensor start of like this:
Hey, I have this sensor from Hygrosens:
http://shop.hygrosens.com/out/media/radar_dbe.pdf
Does anyone have any experience with this module...
So hereby.
I have it hooked up to the arduino (nothing to difficult), open-collector works fine with an interrupt.
I've also did some arduino-oscilloscoping and found that the line-in of the pot gives out some more data if used raw in an analog pin (did some multimetering to, all neatly within arduino capabilities). It gives a frequency and a voltage. The frequency should provide some velocity measurment and the voltage the amount of waves returned (e.g. size of object). None what so-ever documented in exact details (Hygrosens is enquired).
I've tried sampling the analog pin with pulseIn() but got the same result every sample. I would agree that it means I should only have to sample one time but, I'd like to know if anyone else tried hooking it up like this...
I've also not tested the velocity yet, "whacking" at it didn't deliver anything beyond 23Km/h (wouldnt know if thats correct :~ ). Knowing
"...signal originating at the mixer output is proportional to the speed: 44 Hz corresponding to a movement speed of approx. 1 km/h."
With no more interesting code:
//lowest F 5Hz
unsigned long f = pulseIn(A0, HIGH, 200000);
//44Hz == 1Km/h
f = (1000000/f);
float kmh = f/44.0;
If I find a way of more precisly measuring the outcomes, I will let it know in this thread. For now, anyone, experiences...?