![]() |
Programming ultrasonic rangefinders
Hello CD! I have a pretty good targeting method for launching Frisbees figured out, but there's one thing I need to know wow to do first. How to program ultrasonic rangefinders. Basically, I need to get the range and put it into an equation, either in real time or at the push of a button. How do I get it to return the distance (in inches)? I've looked through CD, and found some examples that are pretty elaborate for doing something similar, but not quite what I was looking for. Is there any easy way to do this? Thanks!
|
Re: Programming ultrasonic rangefinders
What specific sensor are you planning to use, and what kind of signal does it provide to the control system? Some have an analog voltage which is proportional to the range. Others have a PWM signal that varies depending on the range. Still others are a serial (e.g. SPI or I2C) connection that encodes a number.
Whatever you get, it's almost certainly going to be a simple matter of multiplying the value by an appropriate constant to turn it into a distance in whatever units you want. |
Re: Programming ultrasonic rangefinders
We intend to use one Maxbotix MB1010 LV-MaxSonar-EZ1 (from the kit of parts last year (?)) and one Maxbotix MB1361 XL-MaxSonar-AEL0. They both support 3 sensor outputs: Analog Voltage, Serial, ands Pulse Width. I'll keep researching. If it's as simple as multiplication, I may try to find out how to return metres as well.
|
Re: Programming ultrasonic rangefinders
The Maxbotix sensor analog signal provides 0.01 V per inch. That means that 1.2 V is 120 inches. Just read in the analog voltage and the math is pretty straightforward.
Of course you can use the PWM or digital outputs, but I can't help you there. |
Re: Programming ultrasonic rangefinders
Thank you very much for the information. As it turns out, somebody <.< soldered our rangefinder for pulse width. Nothing I can't fix in a day or two once I acquire a soldering iron. In the meantime, is there an easy way to get input from the pulse width?
|
Re: Programming ultrasonic rangefinders
Getting input from a PWM signal is one thing that I've never found a good way to handle using the available hardware and software of an FRC robot. You can play around with using a filter circuit to turn the signal into an analog voltage and read it that way, but it would take a lot less time to move the output wire to the voltage pin of the sensor.
|
Re: Programming ultrasonic rangefinders
Hypothetically, if we did have the sensor wired properly, is it categorized with the WPI class for rangefinders, or would it just be a digitalinput? I've been looking through the WPI documentation and it says that the Ultrasonic class specifically supports the Devantech SRF04 and Vex ultrasonic sensors. I'm not sure if that means it ONLY supports those two, or if those were just examples.
|
Re: Programming ultrasonic rangefinders
You may find this helpful (be sure to grab from my second posting):
http://www.chiefdelphi.com/forums/sh...d.php?t=103028 I posted this last year, it did work, however I wasn't very happy with the sensor itself since it's very easily confused. Another good method for determining range is to roughly compute it from a known target (such as the 3pt goal). |
Re: Programming ultrasonic rangefinders
Thanks! How would I call the functions from the main robot cpp file? Is it just
Code:
void GetDistance() |
Re: Programming ultrasonic rangefinders
Quote:
You can use the fancier .h file from the thread where you got that code, but that might be more than you're ready to handle. Joe ("DjScribbles") is right here and can help you understand how to use it. Or you can define the AnalogChannel object once at the beginning of your program and leave out the pair of lines that create it every time in the code you copied. |
Re: Programming ultrasonic rangefinders
Sorry about that! I knew exactly what you meant, but copied/pasted the pseudo-code from that page assuming that AnalogChannel was the name of the .h file (Having not noticed it at the bottom of the post and not being familiar with the actual AnalogChannel WPI class. Additionally, I'm at school, and the router prohibits me from downloading it for some reason). What I meant was, if I'm using the .h file, how would I make references to it in my own code. Thanks!
|
Re: Programming ultrasonic rangefinders
You would instance it much like you would a jaguar, or any other device.
Code:
#include "AnalogRangeFinder.h" |
Re: Programming ultrasonic rangefinders
am I the only person who can't seem to get this to work? I'm not completely sure how to do this, but one of the other programmers (better than myself) tried to get it working to no avail...
|
Re: Programming ultrasonic rangefinders
Quote:
For debugging the sensor itself you can put a multimeter probe on the analog line and see what value it is sending to the cRio (a voltage level that should change the closer the sensor is to something). Once you see values on the multimeter that correspond to distance, then you debug code. If you need more help, please post actual details on what you've done and what you see. |
Re: Programming ultrasonic rangefinders
Good day! This is Tom Bonar from MaxBotix Inc.
I was looking through the Chief Delphi forum, and I have noticed that you were having difficulty getting the sensor connected to the cRio. You may wish to consider looking at the quick-start guide (http://maxbotix.com/articles/016.htm) that we created last year. This guide has a walk through on connecting MaxSonar sensors to control devices. The fundamentals are the same for all MaxSonar sensors, with the big difference for connection purposes being the scaling factor of the Analog Voltage output. For calculating this output please view our Analog Voltage article (http://maxbotix.com/articles/032.htm). We have examples for all of our sensors, as well as integrating directly with a 10 bit Analog Digital converter. We have also kept the notes from last year's FIRST competition on our Facebook page (link to the 3 links from first email) https://www.facebook.com/photo.php?f...type=3&theater https://www.facebook.com/notes/maxbo...77662868954588 https://www.facebook.com/notes/maxbo...45549128832627 Please let me know if you have any questions by emailing frc@maxbotix.com. On behalf of MaxBotix Inc., I wish all the teams a successful build season. Best regards, Tom Bonar Technical Support of MaxBotix Inc. Phone: (218) 454-0766 Fax: (218) 454-0768 Email: frc@maxbotix.com Web: www.maxbotix.com Follow us on Facebook at: http://www.facebook.com/pages/MaxBot...25159384204938 Technical support and sales are subject to the terms and conditions listed on our website at http://www.maxbotix.com/ MaxBotix, MaxSonar,EZ0, EZ1, EZ2, EZ3, EZ4, AE0, AE1, AE2, AE3, AE4, WR1, WRA1, and WRLA1 are trademarks of MaxBotix Inc. |
Re: Programming ultrasonic rangefinders
I tried using the code you provided, and it compiled. My next problem is printing the distance to the Driver Station in real time to prove the code and/or our sensor works. We copied and pasted the .cpp ad .h file into the BuiltInDefaultCode, then copied your code into the main .cpp file. We made sure the robot was correctly wired. We tried changing the code a little to get data prited, but couldn't print any data (or at least not the right data).
Code:
#include "AnalogRangeFinder.h" |
Re: Programming ultrasonic rangefinders
In the code you posted here, you only read the distance once, then constantly send it to the driver station, this could cause some odd behavior (assuming the sonar has a bit of turn on transient).
Also, if you are using iterative robot, I would suggest using it's Disabled/Autonomous/Teleop functions, instead of the ones used by simple robot (which may not even work). This code should do what you want to do, and uses IterativeRobot functions: Code:
#include "WPILib.h" |
Re: Programming ultrasonic rangefinders
Is there a benefit to using IterativeRobot instead of SimpleRobot? I'm just wondering. We've been writing all of our simple programs using SimpleRobot to demonstrate the various functions of the robot. Thanks for this, by the way! Our primary problem was a bad PWM cable. We'll be testing to see if we can get the new sensor working today.
|
Re: Programming ultrasonic rangefinders
With the recently posted build of WPILib you should be able to see the AnalogChannel show up on the SmartDashboard in Test mode. From there you'll see the voltages that correspond to distances and it will verify that the sensor is working.
See this page for more information about viewing the Test mode values: http://wpilib.screenstepslive.com/s/...ode-livewindow As it shows, you can either explicitly set up the test mode values yourself and get meaningful names for the sensors or you can let WPILib automatically add them. There are examples of each case on that page. Hope this helps. Brad |
Re: Programming ultrasonic rangefinders
Quote:
It makes it easier to add all of your code to the periodic functions, and if you need to add some time sensitive code, it can be added into continuous without restructuring your code. By removing while loops (or hiding them in the base class), it helps prevent getting stuck in auton mode and never getting to teleop, and in general it encourages writing non-blocking code. |
| All times are GMT -5. The time now is 14:24. |
Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi