kriswiner / MPU9250

Arduino sketches for MPU9250 9DoF with AHRS sensor fusion
1.04k stars 471 forks source link

Question? 9250 miniboard on arduino uno #134

Open mjs513 opened 7 years ago

mjs513 commented 7 years ago

Kris Quick question if I may. Can I run your mini-board on a uno with out level shifter on sda/scl? Or should I use level shifter?

Thanks Mike

PS. I extracted the code piece on master mode from Brian Taylor's library and it works really well you can actually use multiple 9250s on since i2c bus. Just thought you would like to know.

kriswiner commented 7 years ago

The board is 3V3 only so you should really use a level shifter.

Does this mean you have sorted out your problem(s)?

On Mon, Apr 3, 2017 at 6:44 AM, Mike S notifications@github.com wrote:

Kris Quick question if I may. Can I run your mini-board on a uno with out level shifter on sda/scl? Or should I use level shifter?

Thanks Mike

PS. I extracted the code piece on master mode from Brian Taylor's library and it works really well you can actually use multiple 9250s on since i2c bus. Just thought you would like to know.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/kriswiner/MPU-9250/issues/134, or mute the thread https://github.com/notifications/unsubscribe-auth/AGY1qid4y1yLCc_Wpu6MZiBjQq8EKYHGks5rsPfAgaJpZM4Mxjqw .

mjs513 commented 7 years ago

Thanks Kris. Wanted to be sure.

Yes problems all sorted out. The initial issue with losing the address looked like it was due to pull-up pads not being soldered. Then I found out some interesting things with Jeff's Rowbergs library when trying to use master mode or the fifo.

Anyway using Brian's master mode control code it works perfectly for using multiple sensors since the mag data is read into the external sensor register and then you read all data straight way. Don't have to address the mag separately or don't have to deal with fifo. You may want to check it out. Also, it would probably work for the 9150 and my guess is maybe the 6050 with an external mag.

Mike