-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from sparkfun/release-candidate
Merging release candidate
- Loading branch information
Showing
20 changed files
with
310 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
/* | ||
Using the BNO080 IMU | ||
Example : Euler Angles | ||
By: Paul Clark | ||
Date: April 28th, 2020 | ||
Based on: Example1-RotationVector | ||
By: Nathan Seidle | ||
SparkFun Electronics | ||
Date: December 21st, 2017 | ||
License: This code is public domain but you buy me a beer if you use this and we meet someday (Beerware license). | ||
Feel like supporting our work? Buy a board from SparkFun! | ||
https://www.sparkfun.com/products/14586 | ||
This example shows how to output the Euler angles: roll, pitch and yaw. | ||
The yaw (compass heading) is tilt-compensated, which is nice. | ||
https://en.wikipedia.org/wiki/Conversion_between_quaternions_and_Euler_angles | ||
https://github.com/sparkfun/SparkFun_MPU-9250-DMP_Arduino_Library/issues/5#issuecomment-306509440 | ||
It takes about 1ms at 400kHz I2C to read a record from the sensor, but we are polling the sensor continually | ||
between updates from the sensor. Use the interrupt pin on the BNO080 breakout to avoid polling. | ||
Hardware Connections: | ||
Attach the Qwiic Shield to your Arduino/Photon/ESP32 or other | ||
Plug the sensor onto the shield | ||
Serial.print it out at 115200 baud to serial monitor. | ||
*/ | ||
|
||
#include <Wire.h> | ||
|
||
#include "SparkFun_BNO080_Arduino_Library.h" | ||
BNO080 myIMU; | ||
|
||
void setup() | ||
{ | ||
Serial.begin(115200); | ||
Serial.println(); | ||
Serial.println("BNO080 Read Example"); | ||
|
||
Wire.begin(); | ||
|
||
//Are you using a ESP? Check this issue for more information: https://github.com/sparkfun/SparkFun_BNO080_Arduino_Library/issues/16 | ||
// //================================= | ||
// delay(100); // Wait for BNO to boot | ||
// // Start i2c and BNO080 | ||
// Wire.flush(); // Reset I2C | ||
// IMU.begin(BNO080_DEFAULT_ADDRESS, Wire); | ||
// Wire.begin(4, 5); | ||
// Wire.setClockStretchLimit(4000); | ||
// //================================= | ||
|
||
if (myIMU.begin() == false) | ||
{ | ||
Serial.println(F("BNO080 not detected at default I2C address. Check your jumpers and the hookup guide. Freezing...")); | ||
while (1) | ||
; | ||
} | ||
|
||
Wire.setClock(400000); //Increase I2C data rate to 400kHz | ||
|
||
myIMU.enableRotationVector(50); //Send data update every 50ms | ||
|
||
Serial.println(F("Rotation vector enabled")); | ||
Serial.println(F("Output in form roll, pitch, yaw")); | ||
} | ||
|
||
void loop() | ||
{ | ||
//Look for reports from the IMU | ||
if (myIMU.dataAvailable() == true) | ||
{ | ||
float roll = (myIMU.getRoll()) * 180.0 / PI; // Convert roll to degrees | ||
float pitch = (myIMU.getPitch()) * 180.0 / PI; // Convert pitch to degrees | ||
float yaw = (myIMU.getYaw()) * 180.0 / PI; // Convert yaw / heading to degrees | ||
|
||
Serial.print(roll, 1); | ||
Serial.print(F(",")); | ||
Serial.print(pitch, 1); | ||
Serial.print(F(",")); | ||
Serial.print(yaw, 1); | ||
|
||
Serial.println(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.