This season, my team has started using a Limelight 2+ for our robot build, and they’ve assigned me to figure out how to program it.
What a fun ride that’s been.
Anyway, I managed to program it to automatically adjust to a target (which still has its issues), but the team asked if I could program it to calculate distance. I looked at the Limelight documentation, which was helpful, but I’m here today to share some weird issue I’m having.
I created a Blank VI to simulate the offset values changing, but every time I run it and change the offset, the values jump around a lot, and even occasionally jumping down to the negatives.
Nope. It’s in inches. I’ll look into converting it to radians. In the code, I’m trying to find the distance of the target (in inches) using the equation d = (h2-h1) / tan(a1+a2)
where d is distance, h1 is the height of the robot, h2 is the height of the target, a1 is the angle in which the Limelight on our robot is tilted at (35 deg) —
Whoops. The label next to the 35 is actually supposed to say Camera Angle.
– And finally, a2 is the offset (/limelight/ty) given by the Limelight.
Yea, so 35 degrees should be .61 radians
For readability you might want to do the conversion in code so you can keep thinking in degrees.
Make sure the Ty values you choose are also in radians.
Ok, so I tried converting everything to radians, which eliminated the issue of the Distance output jumping around.
The thing is, when I increase the Offset, the Distance decreases when it’s supposed to decrease. Also, is there any way to take the radians after the tangent calculation and somehow make the Distance output in inches?
The output is in whatever units you use for height, I presume that’s in inches.
Tangent is just a ratio. It has no units associated with it.
I’d expect the distance to decrease as the total angle increases.
You’re looking up at a steeper angle as you get closer to the wall. Craning your neck so to speak.
As the angle decreases the distance gets farther.
My assumptions are:
the 35 degrees is your camera tilted up.
The Limelight Ty is an additional tilt up when positive and down when negative.
P.S.
You can simplify/clarify the code by adding the camera angle to ty, then converting to radians and sending that to the Tan function. That way all your inputs are in degrees making it easier to think of 35+7=42 total degrees.