This is just a sample to demonstrate the basic method for posting
Code:
#include
#include
#include
// Define motor pins
#define MOTOR1_PIN 3
#define MOTOR2_PIN 5
#define MOTOR3_PIN 6
#define MOTOR4_PIN 9
// Create motor objects
Servo motor1;
Servo motor2;
Servo motor3;
Servo motor4;
// Create MPU6050 object
MPU6050 mpu;
// Variables for sensor data
int16_t ax, ay, az;
int16_t gx, gy, gz;
// Variables for motor speeds
int motor1Speed = 1000;
int motor2Speed = 1000;
int motor3Speed = 1000;
int motor4Speed = 1000;
// PID control variables
float kp = 1.0;
float ki = 0.0;
float kd = 0.0;
float error, previousError, integral, derivative;
float setPoint = 0.0; // Desired angle
void setup() {
// Initialize serial communication
Serial.begin(9600);
// Initialize motors
motor1.attach(MOTOR1_PIN);
motor2.attach(MOTOR2_PIN);
motor3.attach(MOTOR3_PIN);
motor4.attach(MOTOR4_PIN);
// Initialize MPU6050
Wire.begin();
mpu.initialize();
// Calibrate MPU6050
mpu.CalibrateAccel(6);
mpu.CalibrateGyro(6);
}
void loop() {
// Read sensor data
mpu.getMotion6(&ax, &ay, &az, &gx, &gy, &gz);
// Calculate pitch angle (simplified)
float pitch = atan2(ay, az) * 180 / PI;
// PID control for pitch stabilization
error = setPoint – pitch;
integral += error;
derivative = error – previousError;
float output = kp * error + ki * integral + kd * derivative;
previousError = error;
// Adjust motor speeds based on PID output
motor1Speed = constrain(1000 + output, 1000, 2000);
motor2Speed = constrain(1000 – output, 1000, 2000);
motor3Speed = constrain(1000 + output, 1000, 2000);
motor4Speed = constrain(1000 – output, 1000, 2000);
// Set motor speeds
motor1.writeMicroseconds(motor1Speed);
motor2.writeMicroseconds(motor2Speed);
motor3.writeMicroseconds(motor3Speed);
motor4.writeMicroseconds(motor4Speed);
// Print sensor data and motor speeds for debugging
Serial.print(“Pitch: “);
Serial.print(pitch);
Serial.print(” Motor1: “);
Serial.print(motor1Speed);
Serial.print(” Motor2: “);
Serial.print(motor2Speed);
Serial.print(” Motor3: “);
Serial.print(motor3Speed);
Serial.print(” Motor4: “);
Serial.println(motor4Speed);
// Delay for stability
delay(10);
}