![]() |
||||||||||
![]()
MISC
SKILLS
HARDWARE
SCIENCE |
The Sharp IR Range Finder is probably the most powerful sensor available to the everyday robot hobbyist. It is extremely effective, easy to use, very affordable ($10-$20), very small, good range (inches to meters), and has low power consumption.
How it Works
(UPDATE: despite popular belief, it is quite possible for both direct and indirect sunlight to significantly affect results. I learned this the hard way!)
Beam Width
So just how thin is the emitted IR beam? Well getting out my trusty IR detector thingy, its about this big:
The detector changes IR light into orange-ish light. Ok so that image is partly faked because my digital camera for some reason couldnt see the orange light, so I re-drew it in for you to see. The beam width is the same diameter as the lens on the left of the Sharp IR rangefinder. As the IR detector was moved away, the beam fades and the diameter expands.
Non-Linear Ouput
To effectively use your Sharp IR Range Finder, you must have a voltage output versus distance chart to reference from. The manuals now come with a 'typical response curve' graph for you to use, but you should check just to make sure it is accurate. If you do not have a chart, or you would like to verify the chart, run an experiment that measures distance versus the output analog value. To do this, place an object in front of your sensor, measure the distance, then look at the printf output reading. Graph your data. I recommend reading my article on advanced sensor interpretation to help you make better sense of the data. Typically people either create a lookup table or create a representative equation of the distance function. To minimize any noise, do this experiment in the environment you wish your robot to operate in. For example, if you want your robot to operate on a factory floor, run this experiment on a factory floor - this will make sure all ambient conditions are the same for highest accuracy. This should be a good rule of thumb for calibrating any sensor.
Disadvantages/Issues
This below image is a good CAD example of this concept. Check out this forum post for more info.
Another issue is the narrowness of the IR beam. In reading sharp details and getting high accuracy, a thin beam is ideal. But the problem with a thin beam is that if it is not pointed exactly at the object, the object is therefore invisible. A common joke in robotics is that a chair is the arch-rival of a small robot. Why? Because chair legs are really thin and easy to miss by a sensor. In contrast to the IR Range Finder would be the sonar. Sonar has really poor accuracy, but since it has a wide beam it can easily detect chair legs. Unfortunately you cannot tell the size or shape of an object with a cheap hobby sonar. Sonar also has a cone shaped beam (spreading out from the point of origin) and the Sharp IR Range Finder beam is more football shaped (the widest portion in the middle being about 16 cm wide). An issue that these range finders have in common with sonar is cross interference. This means that the signal emitted by one sensor can potentially be read by another sensor and therefore give you bad readings. However, unlike sonar which have sound signals that can bounce off of multiple walls, you just need to make sure your IR beams do not cross in parallel (the wide parts of the football shaped beam not overlapping). This makes sense because you have over redundant sensors if the two beams cross. Techniques With the Sharp IR Range Finder
My Robot Examples with Sharp IR
Edge Detection Object Tracking
This below video shows how I mount a Sharp IR to a servo:
Range Finder Basic 2D Mapping
This array method can be somewhat complicated at first for several reasons. You need to understand how to store and manipulate values into an array on your microcontroller. If you do not know how to do this, look up 'arrays' in your perferred programming language to understand it, then look up the syntax rules in your microcontroller manual to program it. Now that you know how to do this, now is the next step - making sense of all this data. First there are several things you need to understand. This array contains numbers, which corresponds to distances, which correspond to adjacent angles.
For example, a box in front of your robot might appear like this:
The 0's mean the beam goes on to infinity, and the numbers represent some distance. You should already know the angle between each reading (because you programmed the servo to go to that angle, duh). You should also already have a lookup table or an equation to know what distance each of the numbers equate to. So doing simple highschool geometry, because you know the distance and the angles, you can mathematically determine the width of this box. Neat, huh? You can also easily determine what angle to turn your robot to avoid this box - this is the same exact angle that the 0 after the 109 reading is at (or the 0 before the 106).
Now what if you get a reading like this:
Now if you were paying attention, you would know this reading shows that there are not one but two objects in front of your robot. One on the left, and one on the right. So here is where it gets trickier. See that space in between the two objects? Is your robot big enough to fit through? Maybe you just need to turn your robot slightly to point towards that center zero to fit through. Or if not, see that 0 on the far right? Perhaps your robot should turn and scan there to find a better opening or way around.
And one more example, now that you are getting the hang of this:
Don't see any 0's, eh? This reading shows that there is a wall in front of your robot. Notice how the numbers seem to increase as it goes to the right? That means your robot is facing the wall at an angle. This information is great if say you wanted your robot to do wall following, as you always know what angle you are to the wall. If there were zeros in your reading, that could perhaps mean your robot is looking down the hallway, or perhaps into a doorway. Calculating the angle to the wall would easily give you that information. This is a 3D scanning and mapping test for my ERP. Its basically mapping obstacles, then choosing the most free path. It scans in only 30 points, so its fairly poor resolution. It's only the first step for a more advanced algorithm in the future.
Timing Techniques with Basic 2D Mapping
If you have made a robot that can map 2D, you will probably have realized by now that a servo rotates fairly slow (relatively speaking). And if you have a crazy fast robot (such as my Hyper Squirrel robot) you need to do mapping fast enough to keep up with those speeds. Solution? Multiple range finders! Yes, two range finders on a single servo, each rotated at an angle to each other, can let your robot map twice as fast! This is because your servo only needs to rotate half the distance now. Note that storing distance values into your array gets slightly trickier, but not by much.
Servo reversing, where your servo returns back to the original position, should not be discounted. Your robot should record data values when your servo goes from 0 to 180 degrees, and it should record data values in reverse as it goes from 180 to 0 degrees. This effectively doubles your mapping speed. This is also a perfect way to test timing errors. If you did not take timing into account properly, you will notice a slight shift in the objects in front of your robot as your servo switches rotation directions - even when your robot is perfectly still (refer to above image)! This probably means you did not allow a pause of a few milliseconds when you told your servo to go to a new position, and then another pause of a few more milliseconds before you got your reading from the Sharp IR Range Finder. Again, the exact pause time depends on the particular servo and range finder you are using.
Sharp IR Noise
Advanced 2D Mapping
Click this image for an example of what robot mapping looks like: Basically, have your robot record a 2D array (for X and Y positions) of positions as it moves at fixed distances. Then, using sensor data and geometry, have it calculate wall locations and record these walls into your array. But you then will have issues with error and drift, and you must compare to previous readings to check for accuracy. Correcting for this drift is yet another huge area of current research in robotics. Oh so complicated. Good luck! You can also place beacons into your world and use other sensors. This is the most common method with cheaper more simple robots. But it requires a lot of early setup and pre-programmed knowledge into your robot. This is an example video of mapping done on my modded iRobot Create that uses a Sharp IR rangefinder:
Laser Rangefinders
* There are also binary digital range finders which have one fixed distance at which they send a signal. If all you require is an on/off switch, you do not need range data. A digital signal is easier to process by your electronics, so then a digital range finder would be the better option. Other digital rangefinders still return range data, but only when you tell them to through a signal line. Analog rangefinders continuously collect rangedata whether your robot wants it or not, wasting battery life.
Further Reading
Theory: sunlight only affects the Sharp IR when the sensor is moving |
|||||||||
Has this site helped you with your robot? Give us credit -
link back, and help others in the forums! Society of Robots copyright 2005-2014 |