Skip to content

ar90n/arduino-pendulum

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

arduino-pendulum

Plain inverted pendulum with arduino.

Demo

Requirements

Schematic

Schematic

Calibration of MPU6050

Use this sketch to get offset of each axes. And set these offset to calibrate MPU6050 as followings.

mpu.setXAccelOffset(837);
mpu.setYAccelOffset(-939);
mpu.setZAccelOffset(544);
mpu.setXGyroOffset(186);
mpu.setYGyroOffset(-65);
mpu.setZGyroOffset(-28);

In this project, this feature is achieved by calibrate method of IMU.

See Also

License

Apache-2.0