Electronics for a $7 USD doppler motion sensor

I had no idea that you could find this kind of motion sensors on the internet for so cheap... But they come with a catch: you need to design some electronics for them.

PCB Back

Editor's Note

A newer version of this sensor has been made can be found here.

The Doppler Effect

Doppler effect
I'm sure you're quite familiar with the Doppler effect: you send an RF signal at a given frequency to a target, and if this object/person is moving the reflected signal's frequency will be shifted.
This is the reason why a fire truck's siren has a higher pitch when the truck is going towards you than when it is going away.

The HB100 Modules

official HB100s
You'll notice the 4 patch antennas to send/receive the 10.525GHz. This frequency is really nice as the sensor will still work if there is some wood/plastic in front of it!
The HB100 outputs a low level voltage (few uV) whose frequency represents the speed at which an object is moving towards or away from the sensor. The output can be very noisy, so in addition to amplifying the signal, we need to filter out frequencies that don't match what we expect from ordinary objects.

The Amplification Schematics

Backpack schematics
Let's analyze them step by step. U1 is a SOIC IC containing 2 operational amplifiers: opamp A & B.
The HB100's output is connected to P1 and C4/(R4&R2&R1) form a high pass filter. The signal at the opamp A positive input (IN+A) is centered at Vcc/2 because of this high-pass filter and the voltage divider made by R1&R2.
The opamp A, R5, C5, R6 and C6 form a non-inverting band pass filter circuit. It amplifies the signal at IN+A by 100 (R6/R5) between 3.4Hz (1/2*pi*R5*C5) and 72Hz (1/2*pi*R6*C6). The gain is 1 outside this frequencies, so the opamp A's output is also centered around Vcc/2.
The latter signal is then passed through an inverting band pass filter circuit. The gain is 121 (R7/R8) between 4.1Hz (1/2*pi*C8*R8) and 72Hz (1/2*pi*C7*R7). The gain is 0 outside these frequencies, but because Vcc/2 is present at IN+B the opamp B's output will also be centered around Vcc/2.

Here are the two types of bandpass filters presented in a better way (different component values are used):
Bandpass filters
Anyway, you might wonder why the last amplifying stage's lower cutoff frequency is slightly higher than the previous'. This is made so to avoid amplifying the DC component as the band pass filter is not ideal (see above picture).
We finally amplified the HB100 signal by 100*121 = 12100... so you can guess that a lot of noise can be amplified.
To avoid that, FB1 removes the power supply's noise and the chosen opamps have a high common mode rejection ratio (CMRR).

Amplification Stage Outputs

PCB Front
Finally, the amplified signal maximum voltage is detected using D1, R9 and C9. It is common to add a resistor in parrallel with C9 but as we are working with relatively low frequencies C9's leakage will do the trick.
To output a nice square signal, we use a discriminator (U2) detecting when the voltage crosses Vcc*0.55.

The Result

And there you have it: a nice Doppler motion detector!

But... What Speeds Can It Measure?

doppler-amplification.png
Unfortunately there is no easy answer. You can see above the simulated frequency response of the amplification schematics. The part of the green curve above the red line is between the 3Hz & 72Hz we mentioned earlier.
As you can see, speeds whose output are above 72Hz won't necessarily be filtered out!
Your speed measurement capabilities will therefore depend on:
- how RF reflective the moving object is
- how close to the sensor the moving object is
- if the sensor is at an angle with the moving object (see HB100 AN)
- if many moving objects are moving around the sensor (see radiation pattern)

For information, here's an oscilloscope trace of the Doppler IF output when my hand is waving 50cm above it:

HB100_OSC_TRACE.png

The Source Files

So here are all the files used to make this sensor. I recently migrated to KiCAD!

Bill of Materials Production files HB100 application note HB100 datasheet

If you don't have time to make one yourself... have a look at my store on tindie :-) .

Sample Code for Arduino

Due to popular demand, here's a very simple program that will output the object speed in your arduino terminal:

// Below: pin number for FOUT
#define PIN_NUMBER 4
// Below: number of samples for averaging
#define AVERAGE 4
// Below: define to use serial output with python script
//#define PYTHON_OUTPUT
unsigned int doppler_div = 19;
unsigned int samples[AVERAGE];
unsigned int x;

void setup() {
  Serial.begin(115200);
  pinMode(PIN_NUMBER, INPUT);
}

void loop() {
  noInterrupts();
  pulseIn(PIN_NUMBER, HIGH);
  unsigned int pulse_length = 0;
  for (x = 0; x < AVERAGE; x++)
  {
    pulse_length = pulseIn(PIN_NUMBER, HIGH); 
    pulse_length += pulseIn(PIN_NUMBER, LOW);    
    samples[x] =  pulse_length;
  }
  interrupts();

  // Check for consistency
  bool samples_ok = true;
  unsigned int nbPulsesTime = samples[0];
  for (x = 1; x < AVERAGE; x++)
  {
    nbPulsesTime += samples[x];
    if ((samples[x] > samples[0] * 2) || (samples[x] < samples[0] / 2))
    {
      samples_ok = false;
    }
  }

  if (samples_ok)
  {
    unsigned int Ttime = nbPulsesTime / AVERAGE;
    unsigned int Freq = 1000000 / Ttime;

    #ifdef PYTHON_OUTPUT
      Serial.write(Freq/doppler_div);
    #else
      //Serial.print(Ttime);
      Serial.print("\r\n");
      Serial.print(Freq);
      Serial.print("Hz : ");
      Serial.print(Freq/doppler_div);
      Serial.print("km/h\r\n");
    #endif
  }
  else
  {
    #ifndef PYTHON_OUTPUT
      Serial.print(".");
    #endif
  }
}

Comments

1. On Thursday, April 10 2014, 22:57 by Daniel

Thanks for sharing! Great place to start!

2. On Tuesday, April 22 2014, 16:38 by Esteban

Hello,
Good job !

Which antenna did you use for RX and TX?

3. On Tuesday, April 22 2014, 16:40 by limpkin

@Esteban : Hello, the antennas haven't been designed by me as I only made the back PCB.

4. On Monday, June 2 2014, 03:20 by S D

I am trying to make this device using DIP components, but the chips are not made in the DIP pin package. What chips would you use instead or the OPA2365 and the MAX9031 that are available in DIP?

5. On Saturday, July 12 2014, 23:49 by Travis

What would the use of the voltage output be? I have simulated a very similar circuit in Multisim, and get nice results with the square wave frequency output, but as I increase the frequency the voltage decreases, and I'm not sure that should be happening.

Thanks!

6. On Thursday, July 17 2014, 23:54 by Chris

@SD, I used OPA2350, which is available as DIP and has a very similar spec.

7. On Monday, October 6 2014, 21:10 by limpkin

@rayui : Sorry, they'd actually be confused...

8. On Tuesday, October 7 2014, 16:09 by limpkin

@rayui : that'd be possible. However given that you're dealing with GHz signals that won't work...

9. On Tuesday, October 7 2014, 16:24 by limpkin

@rayui : I mean that you won't be able to transmit a high impedance GHz signal for more than a few cm :)

10. On Tuesday, October 7 2014, 16:40 by limpkin

@rayui : this provides a nice introduction: http://en.wikipedia.org/wiki/Transmission_line

11. On Saturday, October 11 2014, 17:16 by Hal

Thanks for offering this nice device! Do you know the maximum velocity this device will detect? Or the smallest flat object it can detect? It made me think of an application in which I want to monitor the vibration of a beam or plate.

Thanks!

12. On Saturday, October 11 2014, 21:23 by limpkin

@Hal : I honestly have no idea, sorry!

13. On Wednesday, October 29 2014, 16:50 by Matt

I think you answered this above, but I'm curious as to whether this device could possibly measure distance to an object (moving or static), rather than simply velocity?

14. On Thursday, October 30 2014, 19:42 by Cody

I bought an HB100 recently but i haven't had a chance to incorporate it into any of my projects yet. Any way i was wondering if you sold just the "breakout board" by itself as i already have the HB100. Thanks!

15. On Saturday, November 15 2014, 16:41 by limpkin

@Matt : The measurement wouldn't be reliable indeed.

16. On Saturday, November 15 2014, 16:41 by limpkin

@Cody : Sorry! I only sell the complete assembly.

17. On Wednesday, November 26 2014, 15:52 by Brian

What kind of range would this have? i.e. would it be something like 60 feet or 60 inches?

Would it work well if the object you are measuring goes across the front of it? (rather than coming directly at or going away from it). e.g. put it out the window of your house to measure the speed of cars going by.

18. On Thursday, November 27 2014, 19:37 by limpkin

@Brian : Something around 20 feet depending on how big the object is. I'm quite sure it wouldn't work very well if it went across the front of it.

19. On Friday, February 20 2015, 18:09 by Afshin

Hi... I recently purchased this module (haven't received it yet). A couple of quick questions:

1) Do you have a document explaining VOUT and FREQ_OUT based on the relative speed of the two objects. In other words, if I connect the VOUT to an ADC, what would the number indicate vis-a-vis the frequency shift? Same for FREQ_Out, if I connect that pin to a GPIO and time the pulses, what do the numbers mean? I need to be able to measure positive and negative frequency shifts. Thanks

20. On Saturday, February 21 2015, 20:13 by limpkin

@Afshin : Hello, thanks for your purchase! VOUT is proportional to the amount of reflected energy so you'll have to experiment. As for the FREQ_OUT ouput, I invite you to have a look at the application note.

21. On Tuesday, March 3 2015, 17:37 by Afshin

Thanks very much for the response... To let you know, I would like to ascertain the speed difference between the moving object and the module... as such, does the FREQ_OUT have indication to that effect?

22. On Tuesday, March 3 2015, 18:34 by limpkin

@Afshin : in theory yes... but I doubt that will be the case in practice, depending on your setup.

23. On Tuesday, March 3 2015, 19:40 by Aux

Did anyone overhere succesfully connect this sensor to an Arduino or Raspberry? I am very interested in the wiring you have done to connect it. anyone got some pics or a youtube link?

24. On Friday, March 20 2015, 11:04 by Valdomi Land

this device can be used to measure tennis ball speed ( with a speed exceeding 220 km / h )?

25. On Friday, March 27 2015, 23:44 by Aux

I did some study on this, but I don't want to shortcut the sensor so a confirmation of my wiring would be nice.

I came to this Arduino connection:
http://nl.tinypic.com/view.php?pic=...

26. On Sunday, March 29 2015, 20:31 by limpkin

@Valdomi Land : Unfortunately no!

27. On Sunday, March 29 2015, 20:33 by limpkin

@Aux : as long as you correctly configure the IOs you should be fine!

28. On Monday, March 30 2015, 09:56 by Robojuchen

On Valdomi lands question and answer to it:

Do you think it is impossible to change filter component's values to measure faster objects speed? Is there some limitation in opamps or HB100 modules performance or in your filter design?

29. On Wednesday, April 1 2015, 00:39 by limpkin

@Robojuchen : It is of course possible to change the filter components values, as long as you don't exceed the opamp GBW product :)

30. On Thursday, April 2 2015, 21:00 by Aux

Me again, I managed to connect it the sensor to an Arduino Uno

Currently I am using Firmata and ArduinoScope to grab the data from the device.

http://nl.tinypic.com/view.php?pic=...

Any help on the next step would be appreciated. What I try to achieve is to get the speed of the object that is passing the sensor.
I guess I need to get raw data from the device so I can process that into speed.

31. On Monday, April 27 2015, 07:54 by oscar

Hi! nice work! Is the output of the square pulse train fully compatible with the arduino DUE analog input? thanks!

32. On Monday, May 4 2015, 11:10 by limpkin

@oscar : Hello Oscar! You will need to use a resistor divider to bring the voltage to 3.3V.

33. On Thursday, May 7 2015, 09:46 by Bero

Hi, great work.
how small at what velocity objects can be catched?
pellets? bullets?
thanks

34. On Tuesday, May 12 2015, 09:33 by Arslan

Before using hb 100 , its library should be bulit in arduino or not ?
Thanks

35. On Friday, May 15 2015, 20:23 by limpkin

@Bero : Hello there! Unfortunately I don't think this sensor will work with the small objects you describe.

36. On Friday, May 15 2015, 20:23 by limpkin

@Arslan : I'm not sure to understand you...

37. On Sunday, June 21 2015, 09:21 by nic

Hi. I bought a module from you on tindie. I can't get it to behave the way you do in your video. The voltage output goes to Vcc immediately when something is moving in the room. That is, it does not give an output proportional to the distance like in your video. Any suggestions?

38. On Sunday, June 21 2015, 09:37 by limpkin

@nic : From what you describe it seems you are measuring VOUT and not FOUT?

39. On Sunday, June 21 2015, 20:52 by nic

yup. Measuring Vout, isn't that what you are doing with the yellow graph on your oscilloscope? The green one must represent the speed of the object (frequency output)? I can't get anything similar to your yellow graph from VOUT. So what is your yellow graph representing?

40. On Monday, June 22 2015, 23:54 by limpkin

@nic : Yellow is indeed VOUT. Are you sure the HB100 is not affected by reflections inside the room? Ideally there shouldn't be metallic objects close to it.

41. On Tuesday, June 23 2015, 18:27 by nic

I tried to do a test just like your's (just did it). I can't get a result like you show. I have tried to move to another room, no effect. It just climbs up to max voltage whenever something is moving within two or three meters. If i stay still, then it goes down to around 2.5V again (very very slowly). It does not behave like in your video above at all. I feed it with 5V, measure it with an oscilloscope and an arduino analog input. Tried with 16mm of wood in front of the sensor also, same result.

42. On Tuesday, June 23 2015, 22:24 by limpkin

@nic : For information all the HB100 sensors are tested like in the shown video :). How is the HB100 fixed to its support? It should be as close as possible to the table edge.

43. On Friday, June 26 2015, 19:40 by mga

If the sensor is pointed down at the road surface, say at 30 degrees, would it detect road speed (with angle correction in software)

44. On Friday, June 26 2015, 21:36 by limpkin

@mga : Hello there, it would indeed!

45. On Tuesday, July 28 2015, 09:07 by Andreas

@Aux : Did you get the sensor to work with some arduino code and got valid results??

Best regards!
-andreas

46. On Saturday, August 8 2015, 17:36 by Nightmare

Hi Limpkin, I bought your sensor, and I made myself the board with your diagram, but it doesn´t work as yours, I changed the comparator for this: GENERAL PURPOSE COMPARATOR, SINGLE, 0.2 US, SOIC-8(LM211DT), The Diode for this: DIODE, SCHOTTKY, 1A, 40V(1N5819HW-7-F), the R4 330k resistor for this: MC01W08051330K, and the FB1 for this one: FERRITE BEAD, 0.35OHM, 400mA, 0805(BK2125HM102-T).
Does it really affect the performance of the sensor??

47. On Sunday, August 9 2015, 15:12 by limpkin

@Nightmare : you should be good! 

48. On Wednesday, August 19 2015, 13:58 by Redman

Hello everyone,

right now we are busy with a school project. We want to build a velocimetry with an Arduino and a HB100. Unfortunately we noticed that the HB100 only measures frequencies in a ~20cm range. We tried different ankles and also tried to isolate with a tinplate which we placed around the sender, the resulat was the same.



Any ideas, any experience with that kind of problem?

Many thanks in advance.

Have a nice day!

49. On Thursday, August 20 2015, 11:53 by Alexander S.

Hello There,

We are using a normal Arduino uno and the HB100 to detect the speed of bypassing cars on the street in front of our school, but we have a small problem with it:

By now we have everything set up and working (nearly) properly - the arduino gets a signal by the hb100 and uses a lcd to display the results (-> the speed). Our problem with the hb100 seems to be the range: It seems to retrieve signals within a range of only ~20cm. We already checked all connections and everything seems just fine. We also tried to use a tin plate around the hb100 to isolate signals from other directions, but that didnt help either. Do you have any idea what could be wrong here? Since we want to detect the speed on a normal street,we need a range of at least 5 meters.

Thanks in advance for your time.

50. On Thursday, August 20 2015, 17:38 by limpkin

@Redman : Did you purchase the HB100 from me? 

51. On Thursday, August 20 2015, 17:39 by limpkin

@Alexander S. : Hey Alexander, did you purchase the HB100 from me?

52. On Thursday, August 27 2015, 23:10 by Dave

I've clocked my own car and a few vehicles on a public road with Doppler audio recordings from an HB100, using an Arduino UNO to average through the noise, recognize a target, measure the shift, and calculate the speed. I noticed this post while Googling for the HB-100 spec sheet. I've had some success, but work on it only intermittently, so I redecorated my Arduino code with explanatory commentary and posted it on GitHub along with some audio files and plots to demonstrate the algorithm. Its accuracy is uncertain, but it appears to be close. Your results may vary and you're on your own, but I hope you find it helpful.
Cheers!

53. On Saturday, August 29 2015, 12:24 by limpkin

@Dave : Thanks a lot! 

54. On Saturday, September 19 2015, 01:27 by Ron

Concerning use of this particular module in a car - as a former Air Force Radar Tech, I've also had what used to be called a First Class Radiotelephone License with Ship's Radar Option for almost 50 years. I'm well aware the module is not intended for use in a vehicle. If the AM proto works, I'll try FM and install an FCC Type-Approved module.

I did kluge it inside the rear bumper of my new SUV. It was virtually overloaded by a nearby metal object, so I moved to a quieter location. Now it sees the road surface and/or rear tire. It does have an extended horizontal pattern.

I've pointed it straight up and it still sees either the road or tire. It may be backscatter. I've selectively lined the bumper with pieces from a heavy duty Aluminum oven liner. Still sees the road or tire. The antenna may also have a backside sensitivity, which I haven't yet foiled.

May be time to purchase or kluge a feed horn.

Regards,

Ron

55. On Monday, September 21 2015, 01:28 by limpkin

@Ron : thanks for the feedback!

56. On Monday, September 21 2015, 04:50 by Joseph

Is it possible to detect motion behind a wall or must it within sight?

57. On Monday, September 21 2015, 16:15 by limpkin

@Joseph : I'm guessing this would depend on what the wall is made of.

58. On Wednesday, September 23 2015, 17:43 by Andrew

Great writeup. I'm working on a project utilizing the HB100 and unfortunately, bought the thing before I realized it may not work exactly as planned....

Would the antenna array still receive signal if using multiple HB100's without applying power to the unit? Meaning, if I only amplify the IF output, without applying 5v to the unit, would a signal be adequately produced? My plan was to use three HB100's to track an object.

Otherwise I may need to look at other units elsewhere.

Have you played with Pulse-wave at all with the HB100?

So far I have just made a single sided Eagle layout for the mini amplifier, but I think I need to redo it for signal separation and noise, the more I read about these types of units.

59. On Thursday, October 1 2015, 09:25 by limpkin

@Andrew : The unit needs to be powered as the antenna signal passes through a signal mixer. I didn't play with pulse wave.

60. On Saturday, October 3 2015, 09:56 by Surachate

i would like to know the V_Out, is it mean Distance the target?

if the target far from the doppler 1m and has frequency 20Hz and if the target far from doppler 5m and has frequency 20Hz. Then the Value of V_Out will be equal or not?

Thannks

61. On Sunday, October 4 2015, 12:23 by limpkin

@Surachate : VOUT is proportional to the amount of reflected RF energy. 

62. On Thursday, October 8 2015, 03:28 by Mario

Hey, I bought one of your modules last week and I just wanted to start off by saying great work!
But now I am trying to make a pulsed doppler separately, and even when I follow the application notes, the output still seems to be continuous wave doppler.
Have you managed to make one using the hb100? Is there any way to improve the schematic on the application notes?

63. On Thursday, October 8 2015, 22:47 by limpkin

@Mario : Hello Mario! Unfortunately I've never tried pulsed mode... but I don't see why its mode of operation should be different than continuous wave doppler. 

64. On Friday, October 9 2015, 03:16 by Nightmare

@Dave : May I have your email address or contact information? I don't know how to contact you in Github but here is my account: https://github.com/Nigthmare

65. On Wednesday, February 10 2016, 18:04 by Wasim

@Aux : Would you please share the wiring diagram of this sensor's backpack with arduino uno?

66. On Wednesday, February 10 2016, 18:09 by Wasim

would you please give me some guidance in wiring diagram of this sensor to arduino uno?
I am using it in my Final Year Project to prevent accident.

67. On Friday, February 12 2016, 16:42 by Richard

Hi, this is great. I have built this circuit but using an LM358 and a MCP6541T-E comparator instead. Do you think this should work okay? It is not totally built yet I am waiting for my ferrite filter to arrive.

Also to increase CMRR could I just use voltage followers and connect them like as in an instrumentation amplifier?

I'm referencing you work as my final year project and the chips you suggested using were too expensive so I had to change them. I hope I picked some that will work. Even if its only slightly as good as yours.

Thanks

68. On Monday, February 15 2016, 17:57 by limpkin

@Richard : Please check the GBW product of the LM358 and make sure it's big enough. Also note that instrumentation amplifiers aren't made to provide lots of current.

69. On Monday, February 15 2016, 20:50 by ctorregrosa

I know the HB100 works well to measure a motion, but what about the speed?. Can the HB100 measure speed with an acceptable accuracy?.

I want to use a HB100 to measure the speed of a open channel water flow. My idea is to set the HB100 with some angle above water (around 2 meters).

I'll appreciate your reply and advice.

70. On Tuesday, February 16 2016, 12:26 by limpkin

@ctorregrosa : the HB100 is actually made to measure speed! It is therefore possible but you'll have to take that angle into account in your speed calculations.

71. On Wednesday, February 17 2016, 10:52 by akiron

hello.

I recently bought HB100 from you.

it works well for walking speed.

I want bit faster than its normal speed.

so, according to your page, changing R6 and R7 makes filter range. right?

I changed the R6 and R7 into 7K ohm.
it didn't work, FREQ out is keeping high.

my question.
am I right? changing R6 / R7 makes different frequency?
also
how fast can it detect?

thanks a lot.

72. On Wednesday, February 17 2016, 22:55 by limpkin

@akiron : Hello there! 7k is way too little, as the GBW product of the OPA2365 isn't high enough! As for the max speed, it all depends on how big the object is. As you can see the RC filter isn't a perfect one so you may still detect relatively high speed when objects are close.

73. On Friday, February 19 2016, 00:41 by akiron

hello limpkin.

thanks to answer my question.

right I understand 7k is too little.
what do you think, how far can I try?
how about 100k ohm?

74. On Friday, February 19 2016, 18:03 by limpkin

@akiron : I'll let you do the maths and check that ;), all the formulas are on this webpage after all!

75. On Monday, February 22 2016, 15:51 by HM50

Hello Sir! I am very interested in your product. I have a need to detect motion only (not speed) at range from 0~40 feet. I am deciding between your device and a unit made by Parallax. How do they differ and would yours suit my needs better?

76. On Monday, February 22 2016, 18:08 by limpkin

@HM50 : Well my module directly outputs the frequency and reflected RF intensity while the parallax only has a detection output...

77. On Tuesday, February 23 2016, 11:11 by Nipun

Sir,
When I connected the IF pin to arduino, I got a 0 and 1 intermittently, if the voltage is in uV range, how is possible that i get 0s and 1s What is the use of Vout in calculating the speed? Is it possible to extract the frequency using FFT?? I'm quite new at this... Please help if possible..

78. On Tuesday, February 23 2016, 18:14 by limpkin

@Nipun : the IF output needs to be amplified! My guess is that you're getting outside noise. FFT is indeed a way to measure speed, but on the amplified output only.

79. On Sunday, February 28 2016, 12:45 by Asgari

Operating range is up to several meters?

80. On Monday, February 29 2016, 09:45 by limpkin

@Asgari : 10 meters at least yes!

81. On Tuesday, March 15 2016, 12:29 by Compi

Hello, it would be possible to detect whether movement is toward or away. Thank

82. On Tuesday, March 15 2016, 15:01 by limpkin

@Compi : Of course! By simply looking at the VOUT output you'd see if it is decreasing or increasing.

83. On Wednesday, March 16 2016, 10:58 by Compi

HI. sorry, C5 it is 4.7uF no 4.7nF

84. On Wednesday, March 16 2016, 14:45 by yuval

I wonder if it's possible to use a raw HB100 without the breakout board and do the filtering in software, similar to how SDR is done. Given a fast enough ADC sampling the IF voltage, would software-based signal filtering be an option with this sensor?

85. On Wednesday, March 16 2016, 17:46 by limpkin

@yuval : I don't think you'd be able to find an ADC that can measure such small signals... RTL-SDR dongles all have a LNA for a good reason ;)

86. On Wednesday, March 16 2016, 17:47 by limpkin

@Compi : In my board VOUT is directly proportional to the amount of RF waves reflected to the sensor.

87. On Saturday, March 26 2016, 14:34 by Jingatak

Hi limpkin
I'm really interested but i would like to know how i can plud this with arduino to make a radar
Maybe if you have an exemple of code
HAve a good day

88. On Saturday, March 26 2016, 20:22 by limpkin

@Jingatak : Hello! Any frequency counter sketch will do :).

89. On Saturday, March 26 2016, 20:29 by Jingatak

@limpkin
I want to do a radar which can detect a tennis ball do you think it's enough precise?
And can you help me for the connection for arduino and the code i'm not that good so if you have some advice it would be very cool

90. On Saturday, March 26 2016, 20:53 by limpkin

@Jingatak : Please note that the sensor can't measure high speeds. You may have a loko at http://interface.khm.de/index.php/lab/interfaces-advanced/arduino-frequency-counter-library/ for the library.

91. On Sunday, March 27 2016, 00:31 by Jingatak

@limpkin
What is the maximum speed?

92. On Sunday, March 27 2016, 16:30 by limpkin

@Jingatak : it all depends on how close the object is. I'm guessing that performances won't be great for a tennis ball.

93. On Wednesday, April 13 2016, 02:25 by Fred

Hi limpkin,
I need to detect high speeds , like vehicles passing , would it work with this module?
thks

94. On Wednesday, April 13 2016, 18:53 by limpkin

@Fred : It all depends on what you call "high". It'll also depend on how close the vehicles are.

95. On Friday, May 6 2016, 13:01 by Richard

hello, how does a low GBW of the amplifier affect the performance when compared to a high GBW?

96. On Saturday, May 7 2016, 18:27 by limpkin

@Richard : Well you'll effectively reduce the maximum speed you can detect.

97. On Wednesday, June 15 2016, 18:42 by Kevin

Hi, I bought your board, and foolishly powered it briefly with reverse polarity (perhaps for a second or so). The output on a scope looks to be fine for both frequency and voltage, The pulses are still nice and square ~0-5V, and a hand-wave signal had pulse widths in the order of 10ms.

Do you think the board is likely to have survived?

98. On Friday, June 17 2016, 22:45 by limpkin

@Kevin : you should be good ;)

99. On Sunday, June 26 2016, 12:20 by bubble

Hi limpkin,
can I measure the speed of a tennis ball (while serving) with your HB-100 breakout board
(and raspberry pi or arduino uno)?

100. On Sunday, June 26 2016, 16:56 by limpkin

@bubble : Hello there, please see the dedicated paragraph in this article... 

101. On Saturday, August 20 2016, 04:34 by Dole

Really nice finished design. Do you think the mixer can be swapped out with a side band rejection mixer to distinguish or isolate positive or negative Doppler frequencies?

102. On Wednesday, September 21 2016, 08:58 by rakesh

I want to make this radar for c band and to process the signals for object detection for longer range. Can i connect bigger antennas for this module?

103. On Monday, October 24 2016, 20:48 by Nick

Hi Limpkin, Great work. Can you tell me who much current your board draws please? I would like to build one into a battery powered device which needs to be very low power. Also does it need any warmup time when first powered. One method for me to reduce battery consumption would be to only turn it on for a short period of time every second or two to detect if any motion is present. I have experimented with the Parallax version of this but their amplifier circuit draws 3 mA even with the Microwave turned off! Thanks

Nick

104. On Friday, November 25 2016, 17:55 by limpkin

@Nick : Hello! It draws around 50mA. I unfortunately can't tell you about the activation time, but that's what you'd need to do indeed!

105. On Friday, November 25 2016, 17:56 by limpkin

@rakesh : I'm affraid that is not possible due to the required impedance matching.

106. On Friday, November 25 2016, 17:57 by limpkin

@Dole : I'm affraid not!

107. On Sunday, December 18 2016, 16:00 by BOB

I've used a LM324 for this circuit and it's work...

-I use a potentiometer (10K) to replace fixed resistor R10 (adjust the trigger voltage of the comparator)

Question: R3 is used for what ?

108. On Saturday, June 3 2017, 09:48 by Geoffrey

Hello, I have an idea for this module that I want to get your opinion on. I believe it may be possible to turn this module into an FMCW radar capable of measuring the distance to objects, similar to this (though with much less range of course): http://lea.hamradio.si/~s53mv/vnr/d...

Even though the HB100's oscillator is not officially a VCO, it appears that the DRO in question is sensitive to input voltage and can be modulated at a rate of 3 kHz/mV: http://lea.hamradio.si/~s53mv/vnr/d...
Therefore, it seems it would be possible to sweep the input voltage and therefore the carrier frequency in a triangle or sawtooth pattern, and use the frequency shift of returned signals to calculate the delay/time-of-flight and therefore the distance of the objects the returns come from, instead of speed.

Do you see any reason why this wouldn't work?

Also, do you know if the CDM324 module you used in your more recent project can be modulated the same way, or if it contains a proper VCO?

109. On Monday, June 5 2017, 21:58 by limpkin

@Geoffrey : wow... that looks like a great idea! However I'm afraid the only way to know it is to try, as there's no easy way to check how the 24GHz varies depending on the input voltage. I'm fairly certain that the cdm324 does not contain a vco.

110. On Tuesday, June 6 2017, 23:35 by Sebastian

Hi limpkin, have you tried the radar for car speed measurement, for example in a parking place? And, if you have, at which distance has it detected the vehicle? Thanks!

111. On Sunday, June 11 2017, 14:36 by august1

Hello, I am currently working on a project where I use 2 HB100 (which do not work at the same time). I would like to know if it is possible to decrease the width of the azimuth radiation pattern. The desired width would be about 15 degrees.
Thank you for your reply.

August1

112. On Friday, June 23 2017, 21:23 by limpkin

@august1 : I'm quite sure ferrite sheets is what you're looking for :)

113. On Friday, June 23 2017, 21:23 by limpkin

@Sebastian : I didn't, but I'm certain it'll work better than on humans. You should expect at least 20-30m.

114. On Tuesday, June 27 2017, 02:15 by Leo

Hi, Im interested to use to measure river water and velocity level
What do you think to use this?

115. On Tuesday, June 27 2017, 12:41 by limpkin

@Leo : to be honest I have no idea if that would work...

Add a comment

Comments can be formatted using a simple wiki syntax.

They posted on the same topic

Trackback URL : https://www.limpkin.fr/index.php?trackback/186

This post's comments feed