• Welcome to Redshift Project Depot.
 

Using the gyro to turn the robot

Started by Louis L, February 05, 2016, 08:31:12 PM

Previous topic - Next topic

Louis L

If you're using the gyro by directly hooking it up to the drivetrain and relying on the WPIlib to do the heavy lifting, that's great. But what if you're doing some independent coding using the gyro?

Below is my transcription from my chicken scratched paper notes. I'm putting it here as much for my benefit as anyone elses'

<TBD>

Louis L


<had to take a break and watch Monty Python and the Holy Grail!>

So this code sniplet is what I used for a function that turns the robot pointed in an arbitrary direction to another arbitrary direction. The directions are all referenced from the initial compass heading where 0 is straight ahead.

Want = the direction we want to go to
At = the direction we're pointed at

// normalize to +/- headings where '+' is a right turn and '-' is a left turn
if (Want < At)
  Want += 360
Diff = Want - At

// Adjust to +/- 180
if (Diff > 180)
   Diff -= 360
if (Diff < -180)
   Diff += 360

// Move wheels
if (Diff < -margin)
   turn left
if (Diff > +margin)
   turn right