Arduino Odyssey : 99 Creative Challenges

Arduino Odyssey: 99 Creative Challenges

will learn how to use the HC-SR04 ultrasonic distance sensor with an Arduino. Note that the HC-SR04 is very similar to the Ping, another popular ultrasonic distance sensor that is used with the Arduino. The main difference is that the Ping only has three pins; it uses a single pin for the trigger and return pulses. The HC-SR04 has four pins and uses separate pins for trigger and the return pulse. So we have a separate video covering how to use the Ping. You can find our Arduino tutorial playlist linked in the description of this video. Here we will focus on the HC-SR04. You can see that it has four pins: VCC for power, Trigger, Echo, and Ground. To connect the HC-SR04 to your Arduino, you will need male-to-female jumper wires. If you were just testing the sensor and don’t have any other parts in your circuit, you can connect it directly to the Arduino instead of using a breadboard. I have the VCC pin going to 5 volts, the Ground pin going to Ground, the Trigger pin going to pin 7, and the Echo pin going to Arduino pin 8.

Let’s switch over to the computer and take a look at the sensor’s data sheet to briefly talk about how it works. But again, if you have already watched our video about the Ping sensor, the concept for operation here is very similar. The sensor works by emitting bursts of ultrasonic sound and measuring how long they take to reflect back to the sensor. This is the same principle used by animals like bats for echolocation. If we look at the timing diagram, we see that you need to send a trigger pulse to the sensor, which then tells it to emit that burst of ultrasonic sound. It listens for the sound to return and then it emits an echo or return pulse, the length of which is proportional to how long it took this sound to reflect back to the sensor. So using the speed of sound in air and knowing that there is a factor of two because the sound had to go out and then return to the sensor, you can use that information to calculate the distance to the object. To program the sensor, you’re actually going to start with the built-in Arduino example program for the Ping sensor and just make a few simple modifications. You can find this program by going to File > Examples > Sensors > Ping.

 Once you’ve opened it, we can take a quick look through and see that, again, the Ping sensor uses a single pin as both an output for the trigger pulse and then it switches that pin to an input to measure the return pulse. The HC-SR04 uses two different pins, so we are going to declare separate variables for those pins. So I’m going to write `const int EchoPin = 8` because I’m using pin 8, and I’m going to change the name of this to `TrigPin` just so it matches the labels on the sensor. Then in my setup function, I’m going to declare those pins as inputs and outputs using the `pinMode` command. So `pinMode(TrigPin, OUTPUT)` because that is my output pin for the trigger pulse, and then `pinMode(EchoPin, INPUT)` because that is my input pin for the return pulse.

 Down here in our Loop function, I can delete these two `pinMode` commands because they are no longer needed. Again, the Ping sensor is switching the pin back and forth between output and input with each measurement. The HC-SR04 has two dedicated pins that we only need to set up once in the setup function. So I’m going to delete this `pinMode` command, delete this `pinMode` command, but then make sure I change the variable names to match what I used before. So I’m going to use the `TrigPin` variable to send the trigger pulse, and then we are going to use the `pulseIn` function to measure the length of the return pulse on what I am calling `EchoPin`. 

Finally, if you remember—you might have seen this in the data sheet—the HC-SR04 expects a 10-microsecond trigger pulse, so I’m going to change this variable value from 5 to 10 for the trigger pulse, and now I should be all set. So you see, just from changing a few lines of code, we have modified the Ping program to use two pins instead of one. Everything else can remain the same, like the conversion from that pulse duration in microseconds to a distance in either inches or centimeters. If you upload the code and open the Serial Monitor and move your hand back and forth in front of the sensor, you should see the distance readings change.

Now if you are trying to decide between the Ping and the HC-SR04, note that the HC-SR04 is much cheaper but does not always seem to work as well for smaller objects. For example, as I move this large, flat piece of cardboard back and forth in front of the sensor, you can see that this circuit works pretty well, and the LEDs light up depending on how far away the cardboard is. However, if I move my hand back and forth in front of the sensor, sometimes it seems a little more glitchy, and some of the LEDs are lighting up when they shouldn’t. 

Arduino Odyssey : 99 Creative Challenges



Post a Comment

Previous Post Next Post