Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /********* Pleasedontcode.com **********
- Pleasedontcode thanks you for automatic code generation! Enjoy your code!
- - Terms and Conditions:
- You have a non-exclusive, revocable, worldwide, royalty-free license
- for personal and commercial use. Attribution is optional; modifications
- are allowed, but you're responsible for code maintenance. We're not
- liable for any loss or damage. For full terms,
- please visit pleasedontcode.com/termsandconditions.
- - Project: MPU6050 Data
- - Source Code compiled for: Arduino Nano ESP32
- - Source Code created on: 2024-06-23 11:53:25
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* read gyroscope at maximum rate and show on serial. */
- /****** END SYSTEM REQUIREMENTS *****/
- /********* User code review feedback **********
- #### Feedback 1 ####
- - change serial to 56700.
- #### Feedback 2 ####
- - 1
- #### Feedback 3 ####
- - change serial to 115000.
- #### Feedback 4 ####
- - tf
- ********* User code review feedback **********/
- /****** DEFINITION OF LIBRARIES *****/
- #include <Wire.h>
- #include <MPU6050.h> //https://github.com/electroniccats/mpu6050
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- /***** DEFINITION OF DIGITAL INPUT PINS *****/
- const uint8_t sensor_MPU6050_Interrupt_PIN_D2 = 2;
- /***** DEFINITION OF I2C PINS *****/
- const uint8_t sensor_MPU6050_I2C_PIN_SDA_A4 = A4;
- const uint8_t sensor_MPU6050_I2C_PIN_SCL_A5 = A5;
- const uint8_t sensor_MPU6050_I2C_SLAVE_ADDRESS = 104;
- /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
- MPU6050 accelgyro(sensor_MPU6050_I2C_SLAVE_ADDRESS); // Initialize MPU6050 with the specified I2C address
- void setup(void) {
- // put your setup code here, to run once:
- Wire.begin(sensor_MPU6050_I2C_PIN_SDA_A4, sensor_MPU6050_I2C_PIN_SCL_A5); // Initialize I2C communication
- Serial.begin(115200); // Initialize serial communication with the specified baud rate
- Serial.println("Initializing I2C devices...");
- accelgyro.initialize(); // Initialize MPU6050
- Serial.println(accelgyro.testConnection() ? "MPU6050 connection successful" : "MPU6050 connection failed");
- pinMode(sensor_MPU6050_Interrupt_PIN_D2, INPUT); // Set interrupt pin as input
- }
- void loop(void) {
- // put your main code here, to run repeatedly:
- int16_t ax, ay, az;
- int16_t gx, gy, gz;
- // Read accelerometer and gyroscope data
- accelgyro.getMotion6(&ax, &ay, &az, &gx, &gy, &gz);
- // Print the data to the Serial Monitor
- Serial.print("a/g:\t");
- Serial.print(ax); Serial.print("\t");
- Serial.print(ay); Serial.print("\t");
- Serial.print(az); Serial.print("\t");
- Serial.print(gx); Serial.print("\t");
- Serial.print(gy); Serial.print("\t");
- Serial.println(gz);
- // Removed delay to read gyroscope at maximum rate
- }
- /* END CODE */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement