Arduino and Navx

Hello

Any one know who to wire a Navx to Arduino

Thanks
Ashish

There’s a few ways you can do it. What specifically are you trying to do with the Arduino and navx?

Thanks for a the reply. I am trying to code a romi (without the Pi ) This simple robot that will use NAVX and turn to a degree. supplied

So a function like this

void turnR(int turnToDeg)
{
Stop right motor

while( navx degrees <=turnToDeg)
{

 run right motor

}
}

That would be quite difficult as you would need to write drivers to interface with the NavX.

For your example, it would be easier to use a IMU, such as this one:

1 Like

I did find a tutorial online regarding how to wire devices with SPI protocol and how to write code for it.
https://www.circuitbasics.com/how-to-set-up-spi-communication-for-arduino/

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.