ar90n / arduino-pendulum

Plain inverted pendulum with arduino

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Plain inverted pendulum with arduino

License:Apache License 2.0


Languages

Language:C++ 96.8%Language:C 3.2%